MATLAB: Convert matrix to jet colormap image and save as tiff

colormapimageImage Processing Toolbox

I'm working with hundreds of images that I need to convert to images using the jet colormap.
I work with tiff files.
I can import these in as matrices, but I can't seem to find a way to convert them to jet colormap images.
I wish to be able to convert them to jet colormap images and export them as a tiff file.

Best Answer

Try ind2rgb
rgbImage = ind2rgb(grayImage, jet(256));
Related Question