Effacer les filtres
Effacer les filtres

convert matrix to jet colormap image and save as tiff

19 vues (au cours des 30 derniers jours)
Hosup Song
Hosup Song le 29 Juin 2016
Commenté : Image Analyst le 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.

Réponse acceptée

Image Analyst
Image Analyst le 29 Juin 2016
Try ind2rgb
rgbImage = ind2rgb(grayImage, jet(256));
  5 commentaires
Walter Roberson
Walter Roberson le 1 Juil 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 le 1 Juil 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.

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 29 Juin 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 commentaires
Sarvagya
Sarvagya le 13 Nov 2022
It's defined in the function imd2rgb. I think it's the colormap variable.
Image Analyst
Image Analyst le 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:

Connectez-vous pour commenter.

Catégories

En savoir plus sur Blue dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by