Azzera filtri
Azzera filtri

imhist & suppress color bar

4 visualizzazioni (ultimi 30 giorni)
Richard
Richard il 11 Set 2020
Commentato: Ameer Hamza il 11 Set 2020
Quick question: I am trying to overlay 2+ image histograms, using imhist (as it provides the color bar at the bottom). When I try to make more than one, using hold on, it adds extra color bars to the bottom. Is there a way to supress that output (or is there a better option I am unaware of)? Idealy the output should look like the output of the code below but with only 1 color bar.
Quick example of what's happening:
I = imread('moon.tif');
I1 = I(100:120,210:230);
I2 = I(450:470,170:190);
I3 = I(370:390,60:80);
figure
hold on
imhist(I1);
imhist(I2);
imhist(I3);
hold off

Risposta accettata

Ameer Hamza
Ameer Hamza il 11 Set 2020
Modificato: Ameer Hamza il 11 Set 2020
Try this
I = imread('moon.tif');
I1 = I(100:120,210:230);
I2 = I(450:470,170:190);
I3 = I(370:390,60:80);
f = figure;
ax = axes();
hold on
imhist(I1);
pos = ax.Position; % save the axes position because next commands will resize it
imhist(I2);
imhist(I3);
hold off
stripes = findall(f, 'Tag', 'colorstripe');
delete(stripes(1:end-1))
ax.Position = pos;
  2 Commenti
Richard
Richard il 11 Set 2020
Dang, you're fast! That's exactly what I was looking for!
Ameer Hamza
Ameer Hamza il 11 Set 2020
I am glad to be of help!

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by