debu das commited on
Commit
f0d4d4e
1 Parent(s): 17e1264

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -48,7 +48,7 @@ async def pytess(cell_pil_img):
48
  paddle_output=' '
49
  cell_cv_img=PIL_to_cv(cell_pil_img)
50
  ocr = PaddleOCR(use_angle_cls=True,use_space_char=True,lang="ch") # need to run only once to download and load model into memory
51
- result = ocr.ocr(cell_cv_img,use_space_char=True,cls=True)
52
  for idx in range(len(result)):
53
  res = result[idx]
54
  for line in res:
 
48
  paddle_output=' '
49
  cell_cv_img=PIL_to_cv(cell_pil_img)
50
  ocr = PaddleOCR(use_angle_cls=True,use_space_char=True,lang="ch") # need to run only once to download and load model into memory
51
+ result = ocr.ocr(cell_cv_img,cls=True)
52
  for idx in range(len(result)):
53
  res = result[idx]
54
  for line in res: