I would like to detect basic English Numbers from 0 to 9 using simple OCR on Android.
I’ve looked for OCR for Android, but it is too complex for my main purpose, is there any simpler way to just detect numbers on Android?
I would like to detect basic English Numbers from 0 to 9 using simple
Share
A simple alternative is to predefine the digits as bitmaps, and to find them using normalized cross-correlation.
There are a lot of disadvantages in this method:
But maybe that is what you need just to get started with.