Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -74,7 +74,7 @@ def tif_bytes_to_pil_image(tif_bytes):
|
|
74 |
image = Image.open(bytes_io).convert("RGB")
|
75 |
w, h = image.size
|
76 |
dim = min(w, h)
|
77 |
-
image = image.crop(0, 0, dim, dim)
|
78 |
image = image.resize((256, 256))
|
79 |
|
80 |
return image
|
|
|
74 |
image = Image.open(bytes_io).convert("RGB")
|
75 |
w, h = image.size
|
76 |
dim = min(w, h)
|
77 |
+
image = image.crop((0, 0, dim, dim))
|
78 |
image = image.resize((256, 256))
|
79 |
|
80 |
return image
|