EasyOCR icon indicating copy to clipboard operation
EasyOCR copied to clipboard

Process finished with exit code -1073741795 (0xC000001D), finished installed and donwloaded models mannully

Open ohmycbc opened this issue 10 months ago • 1 comments

hello I've installed and downloaded the models, no errors and extracting text from image fails? please help me to check for it, thanks!

  1. pip install easyocr -- ### finished.
  2. pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 -- ### finished.
  3. download models on www.jaided.ai/easyocr/modelhub/ -- ### finished.
  4. import easyocr img_1 = 'img_frame\\1.jpg' reader = easyocr.Reader(['en'], gpu=False) result = reader.readtext(img_1) -- ### finished.
  5. Process finished with exit code -1073741795 (0xC000001D) -- ### no errors and extracting text from image fails.

Image

Image

Image

ohmycbc avatar Mar 04 '25 07:03 ohmycbc

Seems like a possible issue with the cpu arch/opencv build.

Architecture requirements as mentioned here https://github.com/JaidedAI/EasyOCR/issues/646#issuecomment-1050816250 could be an issue if you have an older processor version.

You could try with quantize=False when instantiating the reader (ref: https://github.com/JaidedAI/EasyOCR/issues/1155)

If you can share your system architecture and your virtual environment details (opencv, pytorch, easyocr etc. version) that might help debug this

brownsloth avatar Jun 24 '25 18:06 brownsloth