Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
snap-stanford
/
SKB-Explorer
like
4
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c77efb7
SKB-Explorer
/
src
/
tools
/
process_image.py
zsyJosh
feat: ✨ SKB explorer
0c3992e
about 1 year ago
raw
Copy download link
history
blame
Safe
170 Bytes
import
numpy
as
np
from
PIL
import
Image
import
matplotlib.pyplot
as
plt
def
extract_patch
(
image, box
):
x1, y1, x2, y2 = box
return
image.crop((x1, y1, x2, y2))