Detect edge and remove it

I need to combine the black and white colour together and left this picture with only the words and number.. can anyone show me on the right approach to solve this problem.

 采纳的回答

Cedric
Cedric 2013-10-10
编辑:Cedric 2013-10-10
% - Read RGB image and convert to BW.
BW = im2bw( imread( 'TEST_7.jpg' )) ;
% - Build vectors of logicals targeting all-black rows/cols.
colId = ~sum( BW, 1 ) ;
rowId = ~sum( BW, 2 ) ;
% - Make them all white.
BW(:,colId) = 1 ;
BW(rowId,:) = 1 ;
% - Show result.
imshow(BW)
Is it what you are trying to achieve?

2 个评论

Yes sir cedric. this is definitely the answer that i am looking for.
thank you for your help sir :)
You're welcome!

请先登录,再进行评论。

更多回答(1 个)

You can simply do this:
binaryImage = imclearborder(~binaryImage);
This gives white letters on a black background (what is needed for most subsequent operations). Invert it if you want black letters on a white background.
binaryImage = ~imclearborder(~binaryImage);

2 个评论

I didn't know IMCLEARBORDER, thank you for the update!
hadi
hadi 2013-10-24
编辑:hadi 2013-10-24
hi this seems late but i just want to say thank you..
your solution has made me solve one of my new problem..

请先登录,再进行评论。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by