how to remove a middle line in the histogram

조회 수: 2 (최근 30일)
Malini Bakthavatchalam
Malini Bakthavatchalam 2020년 12월 15일
댓글: Matt Gaidica 2020년 12월 17일
Hi,
I have to remove the middle line in the histogram, I have attached a sample of my histogram output and the circled the line which i have to dont want in the central histogram, I am attaching my code here. pls do help me with that .
figure;
subplot(231)
imshow(MyImrgbBackBR.^(1/2.2));
subplot(232)
imshow(MyImrgbColb.^(1/2.2));
subplot(233)
imshow(MyImrgbBackTR.^(1/2.2))
subplot(234)
histogram(MyImrgbBackBR.^(1/2.2),"Edgecolor", [1 0 0], "facealpha",0.7)
xlim([0 1])
set(gca,'Yscale','log')
subplot(235)
histogram(MyImrgbBackBR.^(1/2.2),"Facecolor",[1 0 0],"Edgecolor", [1 0 0],"facealpha",0.7)
hold on;
histogram(MyImrgbBackTR.^(1/2.2),"Facecolor",[0 0 1],"Edgecolor", [0 0 1],"facealpha",0.7)
xlim([0 1])
set(gca,'Yscale','log')
subplot(236)
histogram(MyImrgbBackTR.^(1/2.2),"Facecolor",[0 0 1],"Edgecolor", [0 0 1],"facealpha",0.7)
xlim([0 1])
set(gca,'Yscale','log')
set(gca,'ylim',[0 10000]);

채택된 답변

Matt Gaidica
Matt Gaidica 2020년 12월 16일
편집: Matt Gaidica 2020년 12월 16일
After subplot(234) capture ylim
ylimVals = ylim;
The set it after the other subplots:
ylim(ylimVals);

추가 답변 (1개)

Matt Gaidica
Matt Gaidica 2020년 12월 16일
Can you just plot a subsection of those data? Is this RGB data?
imshow(MyImrgbColb(1:end-1,:,:).^(1/2.2));
  댓글 수: 13
Malini Bakthavatchalam
Malini Bakthavatchalam 2020년 12월 16일
Hi is there any solution for this limits ?
Matt Gaidica
Matt Gaidica 2020년 12월 17일
One way is to capture ylim after subplot(234)
ylimVals = ylim;
Then set it at subplot(236)
ylim(ylimVals);

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

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by