Update app.py
Browse files
app.py
CHANGED
|
@@ -136,7 +136,7 @@ def main():
|
|
| 136 |
full_img_path = img_path
|
| 137 |
|
| 138 |
# Open and resize the image to the desired dimensions
|
| 139 |
-
image =
|
| 140 |
resized_image = cv2.resize(image, (image_width, image_height))
|
| 141 |
|
| 142 |
# Determine the column to place the image in
|
|
|
|
| 136 |
full_img_path = img_path
|
| 137 |
|
| 138 |
# Open and resize the image to the desired dimensions
|
| 139 |
+
image = image_open(full_img_path)
|
| 140 |
resized_image = cv2.resize(image, (image_width, image_height))
|
| 141 |
|
| 142 |
# Determine the column to place the image in
|