Please can anyone help:I require a matlab code for removing text from an Image.

2 visualizzazioni (ultimi 30 giorni)
I want to be able to remove all text from a binary Image containing text and objects/shapes. Please can anyone help

Risposta accettata

Image Analyst
Image Analyst il 6 Apr 2012
Walter is saying that virtually any kind of weird-shaped blob might be a letter in some alphabet. You want to identify blobs that are in just one alphabet I presume. So basically you need to do OCR on the blobs to identify which ones belong to your alphabet and which are just meaningless scribbles or letters from other alphabets. Giving code for OCR has always been beyond the scope of Answers. Heck, there are companies employing dozens or hundreds of people that have been working on that for decades so I know it would not be worth my time to develop it all by myself. Personally, I'd look for an existing OCR package to buy. But if you want to write your own OCR package, have at it. Maybe you could try shape algorithms like SURF (see wikipedia.org).

Più risposte (1)

Walter Roberson
Walter Roberson il 6 Apr 2012
Clear the image completely. Every combination of shapes and colors is "text" to some writing system.
Unicode alone has more than 98000 defined characters, and there are probably a several thousand fonts; and then you have hand-written characters complete with shaky hands and pen blotches and human errors.
  4 Commenti
Umar Farooq Ghumman
Umar Farooq Ghumman il 31 Gen 2019
What if it is English? Just English. How would one proceed with it? I would like to remove the text, lines with arrows, and also the box at the bottom.
pic.png
Image Analyst
Image Analyst il 1 Feb 2019
If the text is pure white, you can just get a mask for white pixels and then call regionfill()
whitePixels = grayImage == 255;
outputImage = regionfill(.............
etc.

Accedi per commentare.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by