EasyOCR
EasyOCR copied to clipboard
Process finished with exit code -1073741795 (0xC000001D), finished installed and donwloaded models mannully
hello I've installed and downloaded the models, no errors and extracting text from image fails? please help me to check for it, thanks!
- pip install easyocr -- ### finished.
- pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 -- ### finished.
- download models on www.jaided.ai/easyocr/modelhub/ -- ### finished.
import easyocr img_1 = 'img_frame\\1.jpg' reader = easyocr.Reader(['en'], gpu=False) result = reader.readtext(img_1)-- ### finished.- Process finished with exit code -1073741795 (0xC000001D) -- ### no errors and extracting text from image fails.
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