ZoomLocation / app.py
greencatted's picture
Camera input
aa652b2
raw
history blame
161 Bytes
import streamlit as st
enable = st.checkbox("Enable camera")
picture = st.camera_input("Take a picture", disabled=not enable)
if picture:
st.image(picture)