Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -82,11 +82,9 @@ with about_tab:
|
|
82 |
""")
|
83 |
|
84 |
with app_tab:
|
85 |
-
col1, col2 = st.columns(2)
|
86 |
-
with col1:
|
87 |
enable = st.checkbox("Enable camera")
|
88 |
picture = st.camera_input("Take a picture", disabled=not enable)
|
89 |
-
|
90 |
if picture is not None:
|
91 |
with st.spinner("Analyzing face..."):
|
92 |
image_pil = Image.open(picture)
|
|
|
82 |
""")
|
83 |
|
84 |
with app_tab:
|
|
|
|
|
85 |
enable = st.checkbox("Enable camera")
|
86 |
picture = st.camera_input("Take a picture", disabled=not enable)
|
87 |
+
|
88 |
if picture is not None:
|
89 |
with st.spinner("Analyzing face..."):
|
90 |
image_pil = Image.open(picture)
|