Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
|
2 |
import streamlit as st
|
|
|
3 |
|
4 |
"""
|
5 |
# AI_ML
|
@@ -8,4 +9,4 @@ import streamlit as st
|
|
8 |
uploaded_file = st.file_uploader("Choose a picture")
|
9 |
|
10 |
|
11 |
-
st.image(
|
|
|
1 |
|
2 |
import streamlit as st
|
3 |
+
from PIL import Image
|
4 |
|
5 |
"""
|
6 |
# AI_ML
|
|
|
9 |
uploaded_file = st.file_uploader("Choose a picture")
|
10 |
|
11 |
|
12 |
+
st.image(Image.open(uploaded_file),width=250)
|