EasyOCR
EasyOCR copied to clipboard
easyocr.Reader not working on windows 11 ARM Parallels (M1) Python 3.11.4
import cv2 import easyocr import matplotlib.pyplot as plt
#read image imagelocation = 'test.jpg' img = cv2.imread(imagelocation)
#instance text detector reader = easyocr.Reader(['en'], gpu=False)
#detect text on image text = reader.readtext(img)
print(text)
does not return anything, program just terminates.
I have the same problem. Did you find any solution?
Windows 10 Python 3.11