ajitrajasekharan commited on
Commit
e23ca33
·
1 Parent(s): ac0eccd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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