EasyOCR icon indicating copy to clipboard operation
EasyOCR copied to clipboard

easyocr.Reader not working on windows 11 ARM Parallels (M1) Python 3.11.4

Open thendotshikota opened this issue 2 years ago • 1 comments

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.

thendotshikota avatar Jun 09 '23 18:06 thendotshikota

I have the same problem. Did you find any solution?

Windows 10 Python 3.11

srBruning avatar Dec 20 '23 20:12 srBruning