removing unwanted pixels

I have an image
in which i need only the text ,i want to remove extra whitr regions around the text.please help

댓글 수: 6

Walter Roberson
Walter Roberson 2012년 4월 25일
*Everything* is text in *some* writing system.
Jan
Jan 2012년 4월 25일
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
kash 2012년 4월 25일
jAN this image is output from another process,i have around 6 pictures in that i need only the text and not others i.e
"Pedestrains Only" which is in english and hindi..
other white regions must be removed
kash
kash 2012년 4월 25일
Walter consider only english and hindi wordings
Sean de Wolski
Sean de Wolski 2012년 4월 25일
How can you tell whether it's German/French/Spanish/English by looking at the text alone?
For example: whiskey
Jan
Jan 2012년 5월 22일
@Sean: A partial solution of your problem: "whiskey" is not German.

댓글을 달려면 로그인하십시오.

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 4월 25일

1 개 추천

Im = imread('Q8.png');
BW = im2bw(Im,graythresh(Im));
bw1 = imdilate(BW,[0 0 0 0 1 1 1 1]);
s = regionprops(bw1,'Area');
k = sort([s.Area],'descend');
bw2 = bwareaopen(bw1, k(2)-1);
bw3 = imfill(bw2,'holes');
bwOut = bw3 & BW;
imshow(bwOut)

추가 답변 (2개)

Teja Muppirala
Teja Muppirala 2012년 4월 25일

0 개 추천

Maybe IMFILL might work?
A = [1 1 1 1; 1 0 1 0; 1 1 1 0]
imfill(A)
imfill(A) - A

댓글 수: 2

kash
kash 2012년 4월 25일
Teja i need automatic removing
Sean de Wolski
Sean de Wolski 2012년 4월 25일
@kash, what 's not automagical about that?

댓글을 달려면 로그인하십시오.

Stephen
Stephen 2012년 5월 22일

0 개 추천

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)=[];

카테고리

도움말 센터File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

질문:

2012년 4월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by