Vihang28 commited on
Commit
8d1062d
·
1 Parent(s): 3408f69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def ocr_model(filepath: str, languages: List[str]=None):
16
  result = pocr_model.ocr(filepath)
17
  state_txt = ""
18
  for res in result :
19
- state_txt += res[1][0] + "\n"
20
  return state_txt
21
 
22
  title = "US Vehicle Number Plate"
 
16
  result = pocr_model.ocr(filepath)
17
  state_txt = ""
18
  for res in result :
19
+ state_txt += str(res[1][0]) + "\n"
20
  return state_txt
21
 
22
  title = "US Vehicle Number Plate"