how to find the histogram of the each blocks of the gray image that is divided into 4 parts?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
user06
el 12 de En. de 2015
Respondida: Image Analyst
el 12 de En. de 2015
there are 4 blocks , and i want the histogram of these 4 blocks.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 12 de En. de 2015
[pixelCounts1, grayLevels1] = imhist(block1);
[pixelCounts2, grayLevels2] = imhist(block2);
[pixelCounts3, grayLevels3] = imhist(block3);
[pixelCounts4, grayLevels4] = imhist(block4);
0 comentarios
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!