how to convert a grayscale image to rgb image
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how to covert a grayscale image to rgb image
0 comentarios
Respuestas (3)
Walter Roberson
el 18 de Abr. de 2012
cat(3, YourImage, YourImage, YourImage)
The result will be a truecolor image that happens to only use gray tones.
2 comentarios
Walter Roberson
el 22 de Ag. de 2012
Movida: DGM
el 29 de Dic. de 2023
For example:
YourImage = rgb2gray( imread('lena.tif') );
newImage = cat(3, YourImage, YourImage, YourImage);
Image Analyst
el 22 de Ag. de 2012
This should also work:
rgbImage = ind2rgb(grayImage, gray(256));
though I usually use the cat() method given by Walter.
1 comentario
Walter Roberson
el 23 de Ag. de 2012
The cat() method will work when the grayscale image is class single or double, or uint8 or uint16, but ind2rgb() requires uint8 or uint16.
DGM
el 29 de Dic. de 2023
This answer covers multiple ways, depending on what your expected results are:
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!