Spaces:
Running
Running
Commit
·
618bbc5
1
Parent(s):
4d21d95
Change function name of easy ocr
Browse files
app.py
CHANGED
|
@@ -106,7 +106,7 @@ def generate_ocr(Method,img):
|
|
| 106 |
|
| 107 |
print("Method___________________",Method)
|
| 108 |
if Method == 'EasyOCR':
|
| 109 |
-
text_output =
|
| 110 |
if Method == 'KerasOCR':
|
| 111 |
text_output = ocr_with_keras(img)
|
| 112 |
if Method == 'PaddleOCR':
|
|
|
|
| 106 |
|
| 107 |
print("Method___________________",Method)
|
| 108 |
if Method == 'EasyOCR':
|
| 109 |
+
text_output = ocr_with_easy(img)
|
| 110 |
if Method == 'KerasOCR':
|
| 111 |
text_output = ocr_with_keras(img)
|
| 112 |
if Method == 'PaddleOCR':
|