push app
Browse files
app.py
CHANGED
|
@@ -98,7 +98,7 @@ if "img" in st.session_state:
|
|
| 98 |
display_img = img
|
| 99 |
|
| 100 |
# Call the streamlit_image_coordinates component with our display image.
|
| 101 |
-
coords = streamlit_image_coordinates(display_img, key="click_img"
|
| 102 |
|
| 103 |
# If new coordinates are returned and differ from what we have stored, update them and rerun.
|
| 104 |
if coords and st.session_state.get("coords") != coords:
|
|
|
|
| 98 |
display_img = img
|
| 99 |
|
| 100 |
# Call the streamlit_image_coordinates component with our display image.
|
| 101 |
+
coords = streamlit_image_coordinates(display_img, key="click_img")
|
| 102 |
|
| 103 |
# If new coordinates are returned and differ from what we have stored, update them and rerun.
|
| 104 |
if coords and st.session_state.get("coords") != coords:
|