awacke1 commited on
Commit
ae8a7b7
1 Parent(s): a95f8a9

Create app.py

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
+ from camera_input_live import camera_input_live
4
+
5
+ image = camera_input_live()
6
+
7
+ if image:
8
+ st.image(image)