PaddleHub / run.streamlit.py
Abysss's picture
Create run.streamlit.py
8458d84
raw
history blame contribute delete
102 Bytes
import streamlit as st
picture = st.camera_input("Take a picture")
if picture:
st.image(picture)