Tesseract OCR only numbers

I am using tesseract for iOS and I can’t figure out how to get it, just to try and read the numbers. I am using the latest English release downloaded from the tesseract website. Does anyone know how to do this?

These are the files that I have:

enter image description here

Thanks in advance!

0
source share
1 answer

If this is execution on the command line, you will also need to have the tessdata\configs\digits file. If you use the API, then call SetVariable("tessedit_char_whitelist", "0123456789-.");

+3
source

All Articles