Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,8 +12,8 @@ def predict(image):
|
|
12 |
try:
|
13 |
print("Predict function called")
|
14 |
|
15 |
-
# تغییر اندازه تصویر به
|
16 |
-
image = image.resize((
|
17 |
|
18 |
# پیشپردازش تصویر
|
19 |
image = image.convert("RGB")
|
|
|
12 |
try:
|
13 |
print("Predict function called")
|
14 |
|
15 |
+
# تغییر اندازه تصویر به 768x1024
|
16 |
+
image = image.resize((768, 1024)) # تغییر اندازه به 768x1024
|
17 |
|
18 |
# پیشپردازش تصویر
|
19 |
image = image.convert("RGB")
|