Spaces:
Runtime error
Runtime error
Commit
·
e23ca33
1
Parent(s):
ac0eccd
Update app.py
Browse files
app.py
CHANGED
@@ -13,6 +13,7 @@ reader = easyocr.Reader(['en'])
|
|
13 |
url = 'https://fki.tic.heia-fr.ch/static/img/a01-122-02-00.jpg'
|
14 |
img = PIL.Image.open(requests.get(url, stream=True).raw).convert("RGB")
|
15 |
bound = reader.readtext(img)
|
|
|
16 |
|
17 |
|
18 |
|
|
|
13 |
url = 'https://fki.tic.heia-fr.ch/static/img/a01-122-02-00.jpg'
|
14 |
img = PIL.Image.open(requests.get(url, stream=True).raw).convert("RGB")
|
15 |
bound = reader.readtext(img)
|
16 |
+
print(bound)
|
17 |
|
18 |
|
19 |
|