aashwinik commited on
Commit
1394dfd
1 Parent(s): 44f94d2

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ #UIApp starts here
4
+ st.set_page_config(page_title="Python - Face Censoring", page_icon=":robot:")
5
+ st.header("Python - Face Censoring")
6
+
7
+ submit=st.button('See Myself')
8
+ if submit:
9
+ picture = st.camera_input("Take a picture")
10
+
11
+ if picture:
12
+ st.image(picture)