ajitrajasekharan's picture
Update app.py
27e3c48
raw
history blame
574 Bytes
import easyocr
import PIL
from PIL import ImageDraw
import streamlit as st
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
reader = easyocr.Reader(['en'])
url = 'https://fki.tic.heia-fr.ch/static/img/a01-122-02-00.jpg'
img = Image.open(requests.get(url, stream=True).raw).convert("RGB")
bound = reader.readtext(img)
for i in range(len(bound)):
bb = bound[i]
left = bb[0][0][0]
top = bb[0][0][1]
right = bb[0][2][0]
bottom = bb[0][2][1]
st.text(f"bbox {left:.2f. right:.2f top:.2f bottom:.2f}")