Borrar filtros
Borrar filtros

Using colormap of a lookup table from MetaMorph in MATLAB?

10 visualizaciones (últimos 30 días)
Guangfeng Yu
Guangfeng Yu el 23 de Jun. de 2021
Respondida: Abhinaya Kennedy el 7 de Mayo de 2024
There is a Look up table from the image analysis software MetaMorph I want to import and use in MATLAB as a 256X3 colormap. I was trying to see if I can 1) import LUT files (.lut extension) directly to MATLAB or 2) extract the colormap from a colored image. Has anyone had experience of doing this? I am aware of the function of rgb2ind, which can return [indexed_image, colormap], with a colormap that can map the indexed_image to the colored image. However is there a way I can do it for any other grayscale image I want to apply the colormap to? Please let me know if you have any suggestions. Thanks.

Respuestas (1)

Abhinaya Kennedy
Abhinaya Kennedy el 7 de Mayo de 2024
Hi Guangfeng Yu,
MATLAB doesn't directly import .lut files, but you can achieve your goal in a couple of ways:
1. Reading the LUT as text and converting to colormap:
  • MetaMorph LUT files might be plain text files with RGB values for each index.
  • Use "fopen" to open the file and "fscanf" to read the RGB values into a matrix.
  • The matrix should have dimensions (256, 3) with each row representing an RGB value for a corresponding index (0-255). This matrix can be directly used as your colormap.
2. Extract from reference image:
  • Read the image with "imread".
  • Use "rgb2ind" to get a 256-color indexed image and its colormap (LUT).
3.Applying the colormap:
  • Use "imshow" with your grayscale image and the obtained colormap as the third argument.
Here are some resources that might be helpful:

Categorías

Más información sobre Red en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by