Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,6 +20,8 @@ file_name = st.file_uploader("Upload a repport image")
|
|
| 20 |
if file_name is not None:
|
| 21 |
col1, col2 = st.columns(2)
|
| 22 |
|
| 23 |
-
|
| 24 |
-
col1.image(
|
|
|
|
|
|
|
| 25 |
|
|
|
|
| 20 |
if file_name is not None:
|
| 21 |
col1, col2 = st.columns(2)
|
| 22 |
|
| 23 |
+
input_image,copy_image = process_img(file_name)
|
| 24 |
+
col1.image(input_image, use_column_width=True)
|
| 25 |
+
|
| 26 |
+
|
| 27 |
|