Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -29,6 +29,9 @@ class_names_dict = {
|
|
29 |
|
30 |
|
31 |
def predict_image(img_path):
|
|
|
|
|
|
|
32 |
# Load the image using PIL
|
33 |
img = Image.open(img_path)
|
34 |
img = img.resize((256, 256)) # Resize the image
|
|
|
29 |
|
30 |
|
31 |
def predict_image(img_path):
|
32 |
+
# If no image is uploaded, return a message
|
33 |
+
if img_path is None:
|
34 |
+
return "Please upload an image.", fixed_image_url
|
35 |
# Load the image using PIL
|
36 |
img = Image.open(img_path)
|
37 |
img = img.resize((256, 256)) # Resize the image
|