Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -75,11 +75,16 @@ def server(input: Inputs, output: Outputs, session: Session):
|
|
75 |
|
76 |
@render.image
|
77 |
def uploaded_image():
|
|
|
78 |
from pathlib import Path
|
79 |
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
83 |
|
84 |
# @output
|
85 |
# @render.image
|
|
|
75 |
|
76 |
@render.image
|
77 |
def uploaded_image():
|
78 |
+
"""Displays the uploaded image"""
|
79 |
from pathlib import Path
|
80 |
|
81 |
+
img_src = uploaded_image_path()
|
82 |
+
if img_src:
|
83 |
+
dir = Path(__file__).resolve().parent
|
84 |
+
img: ImgData = {"src": str(dir / uploaded_image_path()), "width": "100px"}
|
85 |
+
return img
|
86 |
+
else:
|
87 |
+
return "" # Return an empty string if no image is uploaded
|
88 |
|
89 |
# @output
|
90 |
# @render.image
|