Text detection / location libraries - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:01:53Z http://stackoverflow.com/feeds/question/880438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/880438/text-detection-location-libraries 5 Text detection / location libraries rcreswick 2009-05-19T00:26:14Z 2009-12-07T21:50:22Z <p>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. </p> <p>The specific problem I'm trying to solve is this:</p> <p>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.)</p> <p>Eventually, I'd like to turn the text into actual asci/unicode characters, but I think that is only tangentially related to this problem.</p> <p>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.)</p> <p>An implementation in java would be ideal, but I'm open to any cross-platform libraries/applications at this point.</p> <p><em>Edit:</em> I'm particularly interested in detecting <em>artificial text</em>, such as subtitles, or a HUD, which seems to be a simpler problem than detecting <em>scene text</em>, such as street signs. (Although scene text detection is even better.) </p> http://stackoverflow.com/questions/880438/text-detection-location-libraries/880484#880484 0 Answer by Demi for Text detection / location libraries Demi 2009-05-19T00:46:33Z 2009-05-19T00:46:33Z <p>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).</p> <p>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. </p> <p>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.</p> <p>If you don't know the orientation of the text it will be of course more complicated.</p> http://stackoverflow.com/questions/880438/text-detection-location-libraries/1863168#1863168 0 Answer by steven for Text detection / location libraries steven 2009-12-07T21:50:22Z 2009-12-07T21:50:22Z <p><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.121.5553&amp;rep=rep1&amp;type=pdf" rel="nofollow">Learning to detect scene text using a higher-order MRF with belief propagation</a> by Chang is a pretty good attempt at this. It also attempts to detect non-uniform text as well.</p>