Photo_class / app.py
gagandwaz's picture
Update app.py
caa7b78
raw
history blame
130 Bytes
import Image
import streamlit as st
picture = st.camera_input("First, take a picture...")
inp = Image.open(picture)
st.write(inp)