Clear Filters
Clear Filters

Grayimage back to green

1 view (last 30 days)
Jane
Jane on 16 Dec 2013
Commented: Jane on 16 Dec 2013
Hello, how can I convert this grayimage back to an rgb with green fluorescence?
<<
>>

Accepted Answer

Image Analyst
Image Analyst on 16 Dec 2013
Edited: Image Analyst on 16 Dec 2013
blackImage = zeros(size(grayImage), 'uint8');
rgbImage = cat(3, blackImage, grayImage, blackImage);
Or you can use ind2rgb():
cmap = [zeros(256,1), (0:255)', zeros(256,1)]
rgbImage = uint8(ind2rgb(grayImage, cmap));

More Answers (0)

Categories

Find more on Modify Image Colors in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!