CoolFace
Apppublic

msaetta/streamlit-app-test1

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
app.py20 linesDownload Raw Back to root
1import streamlit as st2import pandas as pd3 4st.title('A Simple Streamlit Web App')5 6picture = st.camera_input("Take a picture")7 8def set_state():9    st.write(type(st.session_state.image_data))10 11if picture:12    st.image(picture)13    st.session_state['image_data'] = picture.getvalue()14 15    st.button(16        "**Confirmation**",17        key="confirm",18        type="primary",19        on_click=set_state20    )