Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to detect Text Area from image?

i want to detect text area from image as a preprocessing step for tesseract OCR engine, the engine works well when the input is text only but when the input image contains Nontext content it falls, so i want to detect only text content in image,any idea of how to do that will be helpful,thanks.

like image 834
chostDevil Avatar asked Apr 18 '12 09:04

chostDevil


People also ask

How can I identify text from an image?

OCR is the “Optical Character Recognition” technology used to convert any image containing handwritten or printed readable text. Once the file has been processed through the online OCR, the extracted text can be further edited by using word processing software like MS Word.

How can I detect blocks of text from scanned document images?

Perform OCR on textOptical character recognition or optical character reader (OCR) is the electronic conversion of images of typed, handwritten, or printed text into machine-encoded text, whether from a scanned document, a photo of a document, a scene photo.

Can Google detect text in images?

Optical character recognition (OCR) is a technology that extracts text from images. It scans GIF, JPG, PNG, and TIFF images. If you turn it on, the extracted text is then subject to any content compliance or objectionable content rules you set up for Gmail messages.

Which algorithm is used to detect text in images?

Optical Character Recognition (OCR) is used to analyze text in images.


3 Answers

Well, I'm not well-experienced in image processing, but I hope I could help you with my theoretical approach.

In most cases, text is forming parallel, horisontal rows, where the space between rows will contail lots of background pixels. This could be utilized to solve this problem. So... if you compose every pixel columns in the image, you'll get a 1 pixel wide image as output. When the input image contains text, the output will be very likely to a periodic pattern, where dark areas are followed by brighter areas repeatedly. These "groups" of darker pixels will indicate the position of the text content, while the brighter "groups" will indicate the gaps between the individual rows. You'll probably find that the brighter areas will be much smaller that the others. Text is much more generic than any other picture element, so it should be easy to separate.

You have to implement a procedure to detect these periodic recurrences. Once the script can determine that the input picture has these characteristics, there's a high chance that it contains text. (However, this approach can't distinguish between actual text and simple horisontal stripes...)

For the next step, you must find a way to determine the borderies of the paragraphs, using the above mentioned method. I'm thinking about a pretty dummy algorithm, witch would divide the input image into smaller, narrow stripes (50-100 px), and it'd check these areas separately. Then, it would compare these results to build a map of the possible areas filled with text. This method wouldn't be so accurate, but it probably doesn't bother the OCR system.

And finally, you need to use the text-map to run the OCR on the desired locations only.

On the other side, this method would fail if the input text is rotated more than ~3-5 degrees. There's another backdraw, beacuse if you have only a few rows, then your pattern-search will be very unreliable. More rows, more accuracy...

Regards, G.

like image 167
Gergely Lukacsy Avatar answered Sep 21 '22 02:09

Gergely Lukacsy


Take a look at this bounding box technique demonstrated with OpenCV code:

Input:

enter image description here

Eroded:

enter image description here

Result:

enter image description here

like image 36
karlphillip Avatar answered Sep 20 '22 02:09

karlphillip


I am new to stackoverflow.com, but I wrote an answer to a question similar to this one which may be useful to any readers who share this question. Whether or not the question is actually a duplicate, since this one was first, I'll leave up to others. If I should copy and paste that answer here, let me know. I also found this question first on google rather than the one i answered so this may benefit more people with a link. Especially since it provides different ways of going about getting text areas. For me, when I looked up this question, it did not fit my problem case.

Detect text area in an image using python and opencv

like image 26
prijatelj Avatar answered Sep 21 '22 02:09

prijatelj