AI_ML / app.py
Kolpitor's picture
Update app.py
28a2b6f
raw
history blame
165 Bytes
import streamlit as st
from PIL import Image
"""
# AI_ML
"""
uploaded_file = st.file_uploader("Choose a picture")
st.image(Image.open(uploaded_file),width=250)