Upload Colony_Analyzer_AI2_HF.py
Browse files
Colony_Analyzer_AI2_HF.py
CHANGED
|
@@ -20,6 +20,7 @@ def cut_img(img):
|
|
| 20 |
for j in range(j_num):
|
| 21 |
cropped_img = img.crop((512*j, 512*i, 512*(j+1), 512*(i+1)))
|
| 22 |
img_map[count] = cropped_img
|
|
|
|
| 23 |
count += 1
|
| 24 |
return img_map
|
| 25 |
|
|
|
|
| 20 |
for j in range(j_num):
|
| 21 |
cropped_img = img.crop((512*j, 512*i, 512*(j+1), 512*(i+1)))
|
| 22 |
img_map[count] = cropped_img
|
| 23 |
+
print(type(cropped_img))
|
| 24 |
count += 1
|
| 25 |
return img_map
|
| 26 |
|