hello.can any one tell me how can I change a particular black pixel in a binary image to white?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hello.can any one tell me how can I change a particular black pixel in a binary image to white?
0 commentaires
Réponses (2)
Image Analyst
le 6 Août 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.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!