Replace pixel value 1 to rgb colour
1 次查看(过去 30 天)
显示 更早的评论
I try to replace pixel == 1 in b/w image to rgb image, but it's look like not success 100%. How to make it to good result based on this code :
for i = 1 :size(a) for j = 1: size(a) if c(i,j) == 0 a(i,j) = 0;
where a is rgb image, c is binary image.
this is my result :
0 个评论
采纳的回答
Image Analyst
2014-12-22
Try this:
% Mask the image using bsxfun() function
maskedRgbImage = bsxfun(@times, rgbImage, cast(mask, class(rgbImage)));
mask is what you called "c" and rgbImage is what you called "a". I put the output into a new image but you could assign it to the same "a" image if you wanted to. I really strongly suggest you use descriptive variable names in your code to make it more maintainable and understandable. There is nothing worse than having to look at someone's code that's an alphabet soup of dozens of single letter variable names. It's very hard to keep track of what variable represents what.
3 个评论
Image Analyst
2014-12-22
It multiplies each color plane of the RGB image by the 2D mask image. To do a multiplication the mask needs to be of the same type. Masks are usually logical but to multiply by a uint8 image, it needs to be cast from a logical to a uint8.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!