How to give colorbar to a tif image in Matlab

4 visualizzazioni (ultimi 30 giorni)
Shilpa S
Shilpa S il 24 Nov 2022
Risposto: Walter Roberson il 24 Nov 2022
x = imread('C:\Users\user\Desktop\PHD EXP Work\ACLPP\9air.tif');
imshow(x);
colorbar;

Risposte (2)

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

Walter Roberson
Walter Roberson il 24 Nov 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.

Categorie

Scopri di più su Display Image in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by