I am writing OCR recognition program. It works fine with scanned texts, however, there are two problems:
- It gives false positives on photos (some rubbish random text like "bkigopes")
- It works quite slow
The goal is to find all images with text and extract this text. So, given mentioned problems, I need to quickly reject photos. I hope that there is some mathematical (statistical) method like calculating some median numbers, which can easily determine colorful image without any obvious structure like scanned text has.
Such method/formula should not be cheated by special kind of images, e.g. text with screenshots or magazine pages with lots of text and pictures inside. Also, colorful text (e.g. red on yellow) should not be rejected.
Has anyone experience with such problem? Any ideas or ready solutions?