Clear Filters
Clear Filters

hello.can any one tell me how can I change a particular black pixel in a binary image to white?

1 view (last 30 days)
hello.can any one tell me how can I change a particular black pixel in a binary image to white?

Answers (2)

Guillaume
Guillaume on 6 Aug 2016
Img(row, column) = 1
Will set the pixel (row, column) to white.

Image Analyst
Image Analyst on 6 Aug 2016
Binary images are of class logical and take on values true and false. To set a pixel at some row and column to appear white, set it to true
binaryImage(row, column) = true;
It's possible to set whole irregularly shaped regions (many pixels) to true if you have some mask or other binary image:
binaryImage1(binaryImage2) = true;
If you don't know the coordinates of your black pixels that you want to turn white, then you need to identify them somehow and for that you should attach an image so we can tell you how to do that.

Community Treasure Hunt

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

Start Hunting!