How to give colorbar to a tif image in Matlab

4 visualizaciones (últimos 30 días)
Shilpa S
Shilpa S el 24 de Nov. de 2022
Respondida: Walter Roberson el 24 de Nov. de 2022
x = imread('C:\Users\user\Desktop\PHD EXP Work\ACLPP\9air.tif');
imshow(x);
colorbar;

Respuestas (2)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 24 de Nov. de 2022
Have tried this syntax:
[X,Cmap]= imread('IMAGE.tif');
image(X);
colormap(Cmap);

Walter Roberson
Walter Roberson el 24 de Nov. de 2022
If the tif is rgb then there is no meaningful colorbar for it.
If the tif is not rgb then imshow would have automatically used colormap(grey) and colorbar() would draw the grayscale.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by