Changing black pixels to white.

How can I keep the small black pixels and change the large lump of black pixels to white?

 Accepted Answer

inverted = ~YourBWImae; %now black is 1, white is 0
Now you can do bwareafilt() on inverted, telling to keep only the groups that are sufficiently small for your purpose. Then after that, invert the result of that so that black goes back to being represented by 0.

1 Comment

But if the larger black pixels are not constant, can i not manually key in the area of the bwareafilt()?

Sign in to comment.

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!