removing unwanted pixels
Afficher commentaires plus anciens
I have an image

in which i need only the text ,i want to remove extra whitr regions around the text.please help
6 commentaires
Walter Roberson
le 25 Avr 2012
*Everything* is text in *some* writing system.
Jan
le 25 Avr 2012
Manually or automatically? Is the picture printed on paper, in a graphics file or imported to Matlab already? Does the problem concern this picture only or do you have a set of pictures? How much noise is allowed in the pictures? Please, kash, post all relevant details.
kash
le 25 Avr 2012
kash
le 25 Avr 2012
Sean de Wolski
le 25 Avr 2012
How can you tell whether it's German/French/Spanish/English by looking at the text alone?
For example: whiskey
Jan
le 22 Mai 2012
@Sean: A partial solution of your problem: "whiskey" is not German.
Réponse acceptée
Plus de réponses (2)
Teja Muppirala
le 25 Avr 2012
Maybe IMFILL might work?
A = [1 1 1 1; 1 0 1 0; 1 1 1 0]
imfill(A)
imfill(A) - A
2 commentaires
kash
le 25 Avr 2012
Sean de Wolski
le 25 Avr 2012
@kash, what 's not automagical about that?
Stephen
le 22 Mai 2012
load the image and make it so black==0 and white==1, then...
Words = imclearborder(~IMG)
if you want to crop it, you can try
Words(sum(Words,2)==0,:)=[];
Words(:,sum(Words)==0)=[];
Catégories
En savoir plus sur Image Processing Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!