How can I apply a logical mask to an image variable?
Afficher commentaires plus anciens
Hello,
I am trying to apply a logical mask to an image variable, however I couldnt manage to do it so far.
I have tried
maskedRgbImage = bsxfun(@times, rgbImage, cast(mask, 'like', rgbImage));
maskedRgbImage = rgbImage.*mask
Also, I've tried to apply mask to the rgbImage.CData directly. All of them are giving me errors. What else I can try?
Thank you so much
2 commentaires
Walter Roberson
le 24 Fév 2022
Your rgbImage is a handle to a deleted image() object -- not an array of data.
dila suay
le 24 Fév 2022
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 24 Fév 2022
You don't need to do both of these:
maskedRgbImage = bsxfun(@times, rgbImage, cast(mask, 'like', rgbImage));
maskedRgbImage = rgbImage.*mask
All you need is the first one. Don't do the second one. It's not right and would need "fixing".
1 commentaire
Kaitlin Wang
le 24 Fév 2022
sir you are my hero. i have been looking at your answers for weeks and learning so much. thank you
Catégories
En savoir plus sur Image Arithmetic dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!