Update app.py
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ def create_interface():
|
|
| 13 |
output_image_path = "resized_image.png"
|
| 14 |
|
| 15 |
# Resize the image
|
| 16 |
-
resize_image(input_image_path, output_image_path, (
|
| 17 |
|
| 18 |
with gr.Blocks() as demo:
|
| 19 |
gr.Markdown(f"# {title}")
|
|
|
|
| 13 |
output_image_path = "resized_image.png"
|
| 14 |
|
| 15 |
# Resize the image
|
| 16 |
+
resize_image(input_image_path, output_image_path, (150, 100)) # Adjust size as needed
|
| 17 |
|
| 18 |
with gr.Blocks() as demo:
|
| 19 |
gr.Markdown(f"# {title}")
|