EasyOCR
EasyOCR copied to clipboard
How can I reliably find numbers?
I'm trying desperately to recognize numbers but unfortunately without success. Here are 2 pictures I want to have examined:
I've already tried the following requests:
results = reader.readtext(image)
results = reader.readtext(image, detail=0)
results = reader.readtext(image, allowlist='0123456789')
results = reader.readtext(image, allowlist='0123456789', detail=0)
results = reader.readtext(image, allowlist='0123456789', low_text=0.3)
results = reader.readtext(image, min_size=20)
Can anyone help me? Thank you very much!
Try to make bigger size of image