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.

采纳的回答

sachit
sachit 2015-1-12
use "imhist" command for every block.
  1 个评论
user06
user06 2015-1-12
ho we can use "imhist" to each block.? i have divided the the image into the blocks then how can i use "imhist"to each block can u plz give an example.?

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2015-1-12
[pixelCounts1, grayLevels1] = imhist(block1);
[pixelCounts2, grayLevels2] = imhist(block2);
[pixelCounts3, grayLevels3] = imhist(block3);
[pixelCounts4, grayLevels4] = imhist(block4);

Community Treasure Hunt

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

Start Hunting!

Translated by