Spaces:
Running
Running
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
|
@@ -33,9 +33,9 @@ if uploaded_file:
|
|
| 33 |
# Display both images in columns
|
| 34 |
col1, col2 = st.columns(2)
|
| 35 |
with col1:
|
| 36 |
-
st.image(image, caption="Original Image"
|
| 37 |
with col2:
|
| 38 |
-
st.image(result_img, caption="Processed Image"
|
| 39 |
|
| 40 |
|
| 41 |
# Create a buffer to store image bytes
|
|
|
|
| 33 |
# Display both images in columns
|
| 34 |
col1, col2 = st.columns(2)
|
| 35 |
with col1:
|
| 36 |
+
st.image(image, caption="Original Image")
|
| 37 |
with col2:
|
| 38 |
+
st.image(result_img, caption="Processed Image")
|
| 39 |
|
| 40 |
|
| 41 |
# Create a buffer to store image bytes
|