JaidedAI / EasyOCR

Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.
https://www.jaided.ai
Apache License 2.0
24.64k stars 3.17k forks source link

OSError #1329

Closed ananitai440 closed 3 weeks ago

ananitai440 commented 1 month ago

ERROR

image

my code

import pytesseract import os,easyocr from PIL import Image

Path to your image

Create a reader object

reader = easyocr.Reader(['en'])

Read the image

result = reader.readtext('1t2.png')

Print the text

for (bbox, text, prob) in result: print(f'{text} (Confidence: {prob})')

ananitai440 commented 3 weeks ago

I solved self