Clear Filters
Clear Filters

Extract color map from png apply to grayscale image

5 views (last 30 days)
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.

Accepted Answer

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

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Products


Release

R2023b

Community Treasure Hunt

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

Start Hunting!