Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,6 @@
|
|
|
|
1 |
import streamlit as st
|
2 |
picture = st.camera_input("First, take a picture...")
|
3 |
|
4 |
-
|
|
|
|
1 |
+
import Image
|
2 |
import streamlit as st
|
3 |
picture = st.camera_input("First, take a picture...")
|
4 |
|
5 |
+
inp = Image.open(picture)
|
6 |
+
st.write(inp)
|