RGB image masking ....
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Piyum Rangana
el 25 de Mzo. de 2017
Respondida: Jan
el 25 de Mzo. de 2017
How do I create a mask of an whole image using a defined threshold value ? The output should have a three channels(R, G, B). Could you please support me ?
1 comentario
Respuesta aceptada
Jan
el 25 de Mzo. de 2017
If you want e.g. a mask for a certain level of the red channel:
Img = rand(64, 48, 3); % Test data
Mask = Imd(:, :, 1) > 0.8; % Test mask
Mask3 = cat(3, Mask, Mask, Mask);
Img(Mask3) = 0; % Apply 3D mask: set red channels > 0.8 to 0.0
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!