Filter löschen
Filter löschen

Extract color map from png apply to grayscale image

5 Ansichten (letzte 30 Tage)
M
M am 19 Feb. 2024
Bearbeitet: M am 4 Mär. 2024
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.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 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)

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Produkte


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by