Extract color map from png apply to grayscale image

3 次查看(过去 30 天)
How can I apply a color map as close as possible to the one in given color image to a grayscale image which is of the same subject, but from a different angle and of different size?
None of the built-in color maps seemed to be close.
I thought maybe trying to 'extract' a color map from the color image might work and tried using @DGM's solution at https://www.mathworks.com/matlabcentral/answers/1839998-how-to-convert-a-gray-scale-image-of-thermal-camera-to-colored-one#answer_1087853, but I'd like to get the color range to match the coloring of the color image as much as possible. It doesn't need to use this method, it was just something I tried.

采纳的回答

Walter Roberson
Walter Roberson 2024-2-19
Use rgb2ind() on the colored image, and take the second output as being the color map.
[~, cmap] = rgb2ind(TheColoredImage);
image(TheGrayImage); colormap(cmap)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by