Update app.py
Browse files
app.py
CHANGED
@@ -97,11 +97,13 @@ def main():
|
|
97 |
with st.container():
|
98 |
c1, c2, c3 = st.columns([2,2,1])
|
99 |
message = c1.text_input("Type your text here!")
|
100 |
-
Capture
|
|
|
101 |
if c2.button("Stop Camera"):
|
102 |
Capture =False
|
103 |
if Capture:
|
104 |
camera_photo = c2.camera_input("Capture a photo to summarize: ", on_change=change_photo_state)
|
|
|
105 |
st.image(camera_photo, caption='Uploaded Image', use_column_width=True)
|
106 |
|
107 |
uploaded_photo = c3.file_uploader("Upload your Images/PDF",type=['jpg','png','jpeg','pdf'], on_change=change_photo_state)
|
|
|
97 |
with st.container():
|
98 |
c1, c2, c3 = st.columns([2,2,1])
|
99 |
message = c1.text_input("Type your text here!")
|
100 |
+
if c2.button("Capture"):
|
101 |
+
Capture = True
|
102 |
if c2.button("Stop Camera"):
|
103 |
Capture =False
|
104 |
if Capture:
|
105 |
camera_photo = c2.camera_input("Capture a photo to summarize: ", on_change=change_photo_state)
|
106 |
+
if camera_photo:
|
107 |
st.image(camera_photo, caption='Uploaded Image', use_column_width=True)
|
108 |
|
109 |
uploaded_photo = c3.file_uploader("Upload your Images/PDF",type=['jpg','png','jpeg','pdf'], on_change=change_photo_state)
|