How to give colorbar to a tif image in Matlab

4 views (last 30 days)
x = imread('C:\Users\user\Desktop\PHD EXP Work\ACLPP\9air.tif');
imshow(x);
colorbar;

Answers (2)

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

Walter Roberson
Walter Roberson on 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.

Categories

Find more on Display Image in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!