How to get colormap of a non-indexed RGB image?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
Rik
2022-3-22
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.
回答(1 个)
Rik
2022-3-22
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Modify Image Colors 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!