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!