aagoluoglu commited on
Commit
6d94ad3
·
verified ·
1 Parent(s): cd92a82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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