How to convert the grayscale image into rgb image ????
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to convert the grayscale image into rgb image ????
1 Kommentar
KSSV
am 18 Jan. 2018
You should be having colormap for this. You need to have a color data of the concerned image.
Antworten (2)
Walter Roberson
am 18 Jan. 2018
RGB_Image = Grayscale_Image(:,:,[1 1 1]);
which is the same as
RGB_Image = repmat(Grayscale_Image, 1, 1, 3);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Convert Image Type finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!