vote up 2 vote down star

I need to detect the bounding box(es) around portions of text in an image, and while there are quite a number of scholarly articles describing algorithms, I haven't found any implementations.

The specific problem I'm trying to solve is this:

Given an image that may or may not contain text, determine if the image does contain text, and if so, output the bounding rectangle around each area of text. (where "area" is defined by the algorithm, and hopefully it will err on the side of smaller areas vs. larger ones.)

Eventually, I'd like to turn the text into actual asci/unicode characters, but I think that is only tangentially related to this problem.

There are a number of tools out there that do OCR, (tesseract, Gocr, etc..) but they seem to only work on text that more or less fills the image with no real "image" content. (Eg: tesseract generates garbage when run on an image with subtitles.)

An implementation in java would be ideal, but I'm open to any cross-platform libraries/applications at this point.

Edit: I'm particularly interested in detecting artificial text, such as subtitles, or a HUD, which seems to be a simpler problem than detecting scene text, such as street signs. (Although scene text detection is even better.)

flag

71% accept rate
"There are a number of tools out there that do OCR, (tesseract, Gocr, etc..) but they seem to only work on text that more or less fills the image with no real "image" content." You would also need to remove any background image that occurs behind the text, presumably. Your OCR might need to happen in the same step as text detection in this case, rather than doing one and then feeding it to the other. Hey, wait, are you writing a CAPTCHA-breaker!? :) – endolith Jul 23 at 23:54
1  
not a captcha-breaker, I swear! :) Some use cases: identifying place names from google street view images (to pair pictures of a company with search results), license plate identification, finding (and reading) signs for visually-impaired pedestrians, etc... – rcreswick Jul 24 at 17:48
In those cases, you'd probably look for the shape of the sign itself, first, which will be perspective-skewed, not boxes. A license plate detector would look for a specific rectangle with a single line of letters and numbers in it, for instance. You'd have to make it work around the symbols and other stuff they put in the middle of the plates. Also: en.wikipedia.org/wiki/File:Lp_nwt.JPG One Good thing about Google Street View is that you have multiple views of the same sign from different angles, so you could use the redundancy to help find things. – endolith Nov 9 at 22:48

1 Answer

vote up 0 vote down

This is not a simple-answer problem. I do not know of packaged implementations specifically for this purpose (which is not to say that they don't exist).

I think that a low-pass filter is one of the first things that the image should be run through - to determine larger areas where the color does not change. After that it may require binary thresholding to get the image to pure black and white, followed perhaps by another filter to clear out artifacts. Then an ocr engine would have a fighting chance, or you can create an algorithm to attempt to bound the area of highest concentration of black pixels.

If you know beforehand the color and/or general position of the text you would have a significantly easier time. If color is known you could filter on that color (or color range). If general position is known (as with subtitles) you can do a rough clip first to a new image, which will significantly reduce processing time.

If you don't know the orientation of the text it will be of course more complicated.

link|flag
A low-pass filter would blur out the text. :) – endolith Nov 9 at 22:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.