Change scale of intensity histogram

조회 수: 2 (최근 30일)
Hugo
Hugo 2014년 1월 30일
댓글: Hugo 2014년 1월 30일
I'm trying to build an intensity histogram of one of my images (type uint16), but the scale it uses makes it impossible to select an area on it. (see image below)
Can anybody explain me how to change the scale for my intensity histogram, at the moment i use imhist to generate a histogram.
% s = size(MRIbrain);
Slicenumber = round((s(3)/2));
A = MRIbrain(:,:,Slicenumber);
figure, imhist(A)
end

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 1월 30일
Maybe you want :
ylim([min_value max_value])
  댓글 수: 1
Hugo
Hugo 2014년 1월 30일
Thanks a lot, couldn't find it in the help function

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

추가 답변 (0개)

카테고리

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