Assign black pixels to binary image
21 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Abdul Salam
le 28 Juin 2019
Commenté : Abdul Salam
le 29 Juin 2019
I have a binary image and i want to assign black pixels to the white segment and then mask it on original image. How can i do that?

0 commentaires
Réponse acceptée
Image Analyst
le 29 Juin 2019
If "mask" is your binary image, and you want the white parts to be black (and the original pixels in the black areas of your binary image left unaltered) in your original grayscale or rgb image , called "yourImage", do this:
% Mask the image using bsxfun() function to multiply the mask by each channel individually.
maskedImage = bsxfun(@times, yourImage, cast(~mask, 'like', yourImage));
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!