Filter löschen
Filter löschen

convert matrix to jet colormap image and save as tiff

19 Ansichten (letzte 30 Tage)
Hosup Song
Hosup Song am 29 Jun. 2016
Kommentiert: Image Analyst am 13 Nov. 2022
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.

Akzeptierte Antwort

Image Analyst
Image Analyst am 29 Jun. 2016
Try ind2rgb
rgbImage = ind2rgb(grayImage, jet(256));
  5 Kommentare
Walter Roberson
Walter Roberson am 1 Jul. 2016
We still not understand what you mean about image with JET colormap, unless you mean what I gave in my Answer
Image Analyst
Image Analyst am 1 Jul. 2016
What do you mean by "layer"? Do you mean a page of a multi-page TIFF file, or do you mean one color channel of a full color RGB TIFF image? If you mean the latter and want to convert, say, the green channel, then the 3 steps are
originalImage = imread(fileName); % Import image.
grayImage = rgbImage(:, :, 2); % Extract green "layer".
rgbImage = ind2rgb(grayImage, jet(256)); % Pseudocolor with jet colormap.
By the way, the TIFF file after being read in by imread() is already an image. An image is a matrix, and vice versa, so there is no need to convert a "layer" (i.e. a color channel) to a matrix because it ALREADY IS a matrix. Nor is there any need to convert a matrix to an image because they're one and the same thing. But you can "pseudocolor an image" or "apply a colormap to a monochrome image" which basically assigns a color to every gray level in the image, turning it from a monochrome (gray scale) image into a full color image.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 29 Jun. 2016
Choose the number of colors you want in your jet colormap.
numcolor = 27;
Then
cmap = jet(numcolor);
jetind = rgb2ind(YourRGBImage, cmap);
What would be returned is an array of indices into the jet colormap with the given number of colors, with each original RGB pixel having been converted into its closest match in the jet colormap.
  7 Kommentare
Sarvagya
Sarvagya am 13 Nov. 2022
It's defined in the function imd2rgb. I think it's the colormap variable.
Image Analyst
Image Analyst am 13 Nov. 2022
You could not pass an entire image as indexes into an N-by-3 colormap.
Please start a new thread of your own with your image and m-file attached.
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by