how to convert grayscale image to rgb image

1 Ansicht (letzte 30 Tage)
tawheed jan
tawheed jan am 1 Nov. 2013
Kommentiert: Image Analyst am 22 Jan. 2021
In my problem i have taken a colored image & converted it to grayscale(double).After processing now i want the colored image back.plz tell me how to do this.

Akzeptierte Antwort

Image Analyst
Image Analyst am 1 Nov. 2013
First convert to an indexed image with uint8(). Then choose a colormap, then call ind2rgb().
  2 Kommentare
mohd akmal masud
mohd akmal masud am 22 Jan. 2021
hi sir, can you show the coding. let saya my coding is
B = dicomread('TRANSA001_CT025.dcm');
Image Analyst
Image Analyst am 22 Jan. 2021
% Convert RGB image to gray scale
grayImage = rgb2gray(B);
% Get color image "back":
% Nothing to do - you still have B (the original RGB image) so you're all set.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by