how to do masking of color image?
1 回表示 (過去 30 日間)
古いコメントを表示
HI,
How to do masking for the color image;
thanks
1 件のコメント
採用された回答
Image Analyst
2014 年 5 月 19 日
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!