import streamlit as st from PIL import Image """ # AI_ML """ uploaded_file = st.file_uploader("Choose a picture") if uploaded_file is not None: st.image(Image.open(uploaded_file),width=250)