Replace pixel value 1 to rgb colour
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Lidank Abiel
el 22 de Dic. de 2014
Editada: Lidank Abiel
el 22 de Dic. de 2014
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 comentarios
Respuesta aceptada
Image Analyst
el 22 de Dic. de 2014
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 comentarios
Image Analyst
el 22 de Dic. de 2014
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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!