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) | |
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) | |