AI_ML / app.py
Kolpitor's picture
Update app.py
7017963
raw
history blame
248 Bytes
import streamlit as st
from PIL import Image
"""
# AI_ML
"""
uploaded_file = st.file_uploader("Choose a picture", type=["png","jpg","jpeg"])
st.write(uploaded_file)
if uploaded_file is not None:
st.image(Image.open(uploaded_file),width=250)