フィルターのクリア

How to show a colorbar of a certain range?

119 ビュー (過去 30 日間)
Sean de Wolski
Sean de Wolski 2011 年 7 月 15 日
コメント済み: Olesia Oh 2021 年 5 月 26 日
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 :)

採用された回答

Titus Edelhofer
Titus Edelhofer 2011 年 7 月 15 日
Hi,
something like this:
h = colorbar;
set(h, 'ylim', [100 150])
Titus
  2 件のコメント
Titus Edelhofer
Titus Edelhofer 2011 年 7 月 15 日
sorry, if it wasn't quick enough ;-)
Sean de Wolski
Sean de Wolski 2011 年 7 月 15 日
That's it, and plenty quick - before third cup of coffee even...

サインインしてコメントする。

その他の回答 (4 件)

Sean de Wolski
Sean de Wolski 2014 年 10 月 16 日
In R2014b, this is now possible by setting the limits of the colorbar directly:
surf(peaks)
h = colorbar
h.Limits = [-2 2]
  3 件のコメント
Sean de Wolski
Sean de Wolski 2014 年 10 月 17 日
No. Caxis rescales the colormap so anything below caxis(1) is the minimal color and anything above caxis(2) is the top of the colormap
subplot(1,2,1)
surf(peaks)
h = colorbar;
h.Limits = [-2 2];
title('My original question from grad school')
subplot(1,2,2)
surf(peaks)
h = colorbar;
caxis([-2 2])
title('using caxis')
Olesia Oh
Olesia Oh 2021 年 5 月 26 日
so so thanks)

サインインしてコメントする。


Maohan Su
Maohan Su 2014 年 1 月 22 日
編集済み: Maohan Su 2014 年 1 月 22 日
cmap = colormap; %get current colormap
cmap=cmap([min max],:); % set your range here
colormap(cmap); % apply new colormap
colorbar();

Harsha Vardhan Rao  Avunoori
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
  1 件のコメント
Sean de Wolski
Sean de Wolski 2011 年 7 月 15 日
Thank you, but that's not what I'm looking for. That turns everything above 150 to red and everything below 100 to blue. I want the full range of the colormap displayed on the image; just the colorbar showing a fraction of the range.

サインインしてコメントする。


Simone Gastaldon
Simone Gastaldon 2020 年 11 月 3 日
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?

カテゴリ

Help Center および File ExchangeOrange についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by