removing unwanted pixels

1 回表示 (過去 30 日間)
kash
kash 2012 年 4 月 25 日
I have an image
in which i need only the text ,i want to remove extra whitr regions around the text.please help
  6 件のコメント
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 日
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 日
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 日
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)=[];

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by