Change scale of intensity histogram

3 ビュー (過去 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 Center および File ExchangeHistograms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by