how to do masking of color image?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Manoj Kumar
el 19 de Mayo de 2014
Comentada: Image Analyst
el 2 de Jun. de 2014
HI,
How to do masking for the color image;
thanks
1 comentario
Image Analyst
el 19 de Mayo de 2014
Editada: Image Analyst
el 19 de Mayo de 2014
Your images didn't show up.
Respuesta aceptada
Image Analyst
el 19 de Mayo de 2014
Here's how to mask an RGB image with a logical mask image (courtesy of Sean de Wolski):
% Mask the image using bsxfun() function
maskedRgbImage = bsxfun(@times, rgbImage, cast(mask, class(rgbImage)));
6 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!