How to show a colorbar of a certain range?
111 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sean de Wolski
el 15 de Jul. de 2011
Comentada: Olesia Oh
el 26 de Mayo de 2021
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 :)
0 comentarios
Respuesta aceptada
Titus Edelhofer
el 15 de Jul. de 2011
Hi,
something like this:
h = colorbar;
set(h, 'ylim', [100 150])
Titus
2 comentarios
Más respuestas (4)
Harsha Vardhan Rao Avunoori
el 15 de Jul. de 2011
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
el 3 de Nov. de 2020
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?
0 comentarios
Ver también
Categorías
Más información sobre Colormaps 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!