How to get colormap of a non-indexed RGB image?
1 view (last 30 days)
Show older comments
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 Comments
Rik
on 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.
Answers (1)
Rik
on 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.
0 Comments
See Also
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!