Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fcernafukuzaki
/
tracking-streamlit
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fcernafukuzaki
commited on
Apr 21, 2024
Commit
2b2dcb2
·
verified
·
1 Parent(s):
e4cde52
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import streamlit as st
2
+
3
+
picture = st.camera_input("Take a picture")
4
+
5
+
if picture:
6
+
st.image(picture)