Spaces:
Runtime error
Runtime error
File size: 481 Bytes
0c830e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import easyocr
import PIL
from PIL import ImageDraw
import streamlit as st
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}")
|