How to get colormap of a non-indexed RGB image?

2 visualizzazioni (ultimi 30 giorni)
S C.Carl
S C.Carl il 22 Mar 2022
Risposto: Rik il 22 Mar 2022
I have an RGBImage (but not an indexed image).
I applied a denoising operation of its grayscale image and obtained a DenoisedImage as grayscale.
I want to show the grayscale DenoisedImage image with the same color with the RGBImage.
So,I wrote;
[Ind, colMap] = rgb2ind(RGBImage, ?); % <= To Learn The ColorMap, I tried rgb2ind(Im,128); rgb2ind(Im,256); rgb2ind(Im,65536);
DenoisedImgAsRGB = ind2rgb(DenoisedImage, colMap);
But, the "DenoisedImgAsRGB" is not similar to the DenoisedImage. What should I write as the second parameter of the rgb2ind fubction?
Or, is there any way to convert the grayscale image to rgb image?
  2 Commenti
Rik
Rik il 22 Mar 2022
What code did you use to denoise the image?
My guess is that you need to make sure the data types of Ind and DenoisedImage match.
S C.Carl
S C.Carl il 22 Mar 2022
Modificato: S C.Carl il 22 Mar 2022
Hi,
The data types of Ind and DenoisedImage are the same ( 450x600 uint8 matrix ). Denoising has been provided by average filtering.

Accedi per commentare.

Risposte (1)

Rik
Rik il 22 Mar 2022
Since a colormap is a symbolic representation of the colors (and the number are not actually guaranteed to mean anything), you may need to denoise each color channel separately, instead of converting to an indexed image. The performance will probably be worse compared to a method that is suited for RGB, but at least it should get you a proper result.

Categorie

Scopri di più su Images in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by