Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.
24.42k
stars
3.16k
forks
source link
Easyocr terminates without any error and the readtext function doesn't work. #1204
Open
ArqamNisar opened 9 months ago
While trying to read text from an image, the program terminates without any error and without any output. Code: import easyocr import cv2
img = cv2.imread('abc.jpg')
reader = easyocr.Reader(['hi', 'en'], gpu=False)
results = reader.readtext(img, detail = 1, paragraph=False) print(results)
Output: Using CPU. Note: This module is much faster with a GPU