ajitrajasekharan's picture
Update app.py
c4ff5e3
raw
history blame
243 Bytes
import easyocr
import PIL
from PIL import ImageDraw
import streamlit as st
import requests
uploaded_file = st.file_uploader("text here", type="file_type")
image = Image.open(uploaded_file)
st.image(image, caption='Uploaded Image.')