File size: 102 Bytes
8458d84
 
 
 
 
 
1
2
3
4
5
6
import streamlit as st

picture = st.camera_input("Take a picture")

if picture:
    st.image(picture)