How to show a colorbar of a certain range?
古いコメントを表示
Hello all and happy Friday!
Let's say I have an image with a colormap and corresponding colorbar
I = imread('cameraman.tif');
imshow(I);
colormap jet
colorbar
I want the colorbar to only show colors for a certain range of values:
range_care = [100 150]; %show colors for values 100:150
Any ideas?
Thanks, plzzzz rply qckly its urgenttt
had to :)
採用された回答
その他の回答 (4 件)
Sean de Wolski
2014 年 10 月 16 日
3 件のコメント
Image Analyst
2014 年 10 月 16 日
Is that the same as caxis([-2,2])?
Sean de Wolski
2014 年 10 月 17 日
Olesia Oh
2021 年 5 月 26 日
so so thanks)
cmap = colormap; %get current colormap
cmap=cmap([min max],:); % set your range here
colormap(cmap); % apply new colormap
colorbar();
Harsha Vardhan Rao Avunoori
2011 年 7 月 15 日
Okay I don't know whether this is the right one or not.
But I have tried this.
I = imread('cameraman.tif');
imshow(I,'DisplayRange',[100 150]);
colormap jet
colorbar
Hope this is what your looking for.
-Harsha
Simone Gastaldon
2020 年 11 月 3 日
0 投票
I have a related problem, I don't know if this is the appropriate place to ask.
I'm plotting multiple sublots (9x2). For each row, the first sublot has a certain colorbar range and the second one has another. Each time I start plotting a new row (say r), the second subplot of the previous row (r-1,2) changes colorbar. I tried freezeColors and related utilities, to no avail. Anyone has advices?
カテゴリ
ヘルプ センター および File Exchange で Color and Styling についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
