billydsi commited on
Commit
9ceae55
1 Parent(s): f38dfdf

Get input image

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ picture = st.camera_input("Take a picture")
4
+
5
+ if picture:
6
+ st.image(picture)
7
+
8
+