how to find the histogram of the each blocks of the gray image that is divided into 4 parts?
1 回表示 (過去 30 日間)
古いコメントを表示
there are 4 blocks , and i want the histogram of these 4 blocks.
0 件のコメント
採用された回答
その他の回答 (1 件)
Image Analyst
2015 年 1 月 12 日
[pixelCounts1, grayLevels1] = imhist(block1);
[pixelCounts2, grayLevels2] = imhist(block2);
[pixelCounts3, grayLevels3] = imhist(block3);
[pixelCounts4, grayLevels4] = imhist(block4);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!