필터 지우기
필터 지우기

imhist & suppress color bar

조회 수: 4 (최근 30일)
Richard
Richard 2020년 9월 11일
댓글: Ameer Hamza 2020년 9월 11일
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

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 9월 11일
편집: Ameer Hamza 2020년 9월 11일
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
Richard
Richard 2020년 9월 11일
Dang, you're fast! That's exactly what I was looking for!
Ameer Hamza
Ameer Hamza 2020년 9월 11일
I am glad to be of help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by