how to find the histogram of the each blocks of the gray image that is divided into 4 parts?

 Accepted Answer

use "imhist" command for every block.

1 Comment

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.?

Sign in to comment.

More Answers (1)

[pixelCounts1, grayLevels1] = imhist(block1);
[pixelCounts2, grayLevels2] = imhist(block2);
[pixelCounts3, grayLevels3] = imhist(block3);
[pixelCounts4, grayLevels4] = imhist(block4);

Asked:

on 12 Jan 2015

Answered:

on 12 Jan 2015

Community Treasure Hunt

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

Start Hunting!