Update app.py
Browse files
app.py
CHANGED
@@ -350,7 +350,8 @@ with tab3:
|
|
350 |
)
|
351 |
|
352 |
# Display the selected image
|
353 |
-
|
|
|
354 |
|
355 |
# Button for actions related to the selected image
|
356 |
if st.button("Details", key=f"details_{image_index}"):
|
|
|
350 |
)
|
351 |
|
352 |
# Display the selected image
|
353 |
+
image_width = 400
|
354 |
+
st.image(st.session_state['image_paths'][image_index], , width=image_width)
|
355 |
|
356 |
# Button for actions related to the selected image
|
357 |
if st.button("Details", key=f"details_{image_index}"):
|