Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -168,9 +168,9 @@ if uploaded_files:
|
|
| 168 |
with image_col:
|
| 169 |
st.subheader("Processed Image")
|
| 170 |
if 'processed_img' in st.session_state:
|
| 171 |
-
st.image(st.session_state.processed_img,
|
| 172 |
else:
|
| 173 |
-
st.image(img,
|
| 174 |
|
| 175 |
with controls_col:
|
| 176 |
st.subheader("Image Controls")
|
|
|
|
| 168 |
with image_col:
|
| 169 |
st.subheader("Processed Image")
|
| 170 |
if 'processed_img' in st.session_state:
|
| 171 |
+
st.image(st.session_state.processed_img, caption="Processed Image")
|
| 172 |
else:
|
| 173 |
+
st.image(img, caption="Processed Image")
|
| 174 |
|
| 175 |
with controls_col:
|
| 176 |
st.subheader("Image Controls")
|