Clear Filters
Clear Filters

Changing black pixels to white.

3 views (last 30 days)
Selina Loh
Selina Loh on 22 Oct 2017
Commented: Selina Loh on 22 Oct 2017
How can I keep the small black pixels and change the large lump of black pixels to white?

Accepted Answer

Walter Roberson
Walter Roberson on 22 Oct 2017
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
Selina Loh
Selina Loh on 22 Oct 2017
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)

Community Treasure Hunt

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

Start Hunting!