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
0 件のコメント
採用された回答
Image Analyst
2014 年 6 月 27 日
Assuming you mean the pdf of gray levels, use imhist().
4 件のコメント
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;
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!