File size: 574 Bytes
27e3c48
0c830e5
 
 
 
0649739
0c830e5
0649739
 
0c830e5
27e3c48
0c830e5
 
27e3c48
 
 
 
0c830e5
 
 
 
 
 
 
27e3c48
0c830e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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}")