How to clear objects connected to the lower borederof the image?

There are 10 objects in my picture of varying sizes. two of them are connected to (contain) the lower boreder of an 80x80 image. The image is binary. I do not want to use bwareaopen.Plzzzzzzzz help. Thank You

 Accepted Answer

% Start by padding the image with 0s on the left, top, and right.
bw2 = padarray(bw,[1 0],0,'pre');
bw3 = padarray(bw2,[0 1],0,'both');
% Remove objects touching the border of the padded image.
bw4 = imclearborder(bw3);
% Remove the padded columns and padded row.
bw5 = bw4(2:end,2:end-1);

3 Comments

will it remove all the objects connected to lower border only? coz imclearborder removes all the objects connected to all the borders! I want the ones which are connected to upper boreder to remain in the image.
Yes, it will remove only the objects connected to the lower border. That's the reason for the first two lines (padding the image) and the last line (removing the padded columns and row). Follow the link to my blog post for more explanation about this technique.
Hi Sir Steve, i want to ask. How can i remove objects that connected to the upper border?

Sign in to comment.

More Answers (1)

You could use the imclearborder function.
There's a blog article by Steve Eddins about this topic too:

1 Comment

thanks but it removes all the border connected objects. i wanna remove oly lower border connected ones

Sign in to comment.

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!