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
23.88k stars 3.12k forks source link

Can't recognize an image with only '0' #1279

Open gurudk opened 2 months ago

gurudk commented 2 months ago

zero

import easyocr

reader = easyocr.Reader(['ch_sim', 'en']) # this needs to run only once to load the model into memory result = reader.readtext('zero.jpg') print(result)

===========================output================= []

gurudk commented 2 months ago

I debug the code , find the defualt text_threshhold = 0.7 is too high. I set this value to 0.3, that is ok!