File size: 295 Bytes
1394dfd
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st
    
#UIApp starts here
st.set_page_config(page_title="Python - Face Censoring", page_icon=":robot:")
st.header("Python - Face Censoring")

submit=st.button('See Myself')
if submit:
    picture = st.camera_input("Take a picture")

    if picture:
        st.image(picture)