how to Matlab function to calculate probability density function of n image?

4 ビュー (過去 30 日間)
I want to calculate the probability density function of an image. can you tell me what is the matlab function

採用された回答

Image Analyst
Image Analyst 2014 年 6 月 27 日
Assuming you mean the pdf of gray levels, use imhist().
  4 件のコメント
Image Analyst
Image Analyst 2018 年 9 月 18 日
pdf is not an image so you don't use imshow(). It's a vector so use plot() or bar():
plot(binLocations, pdf, 'b-', 'LineWidth', 2);
grid on;
Alessandro Bile
Alessandro Bile 2018 年 9 月 19 日
Thank you for your help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by