how to find the histogram of the each blocks of the gray image that is divided into 4 parts?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
user06
am 12 Jan. 2015
Beantwortet: Image Analyst
am 12 Jan. 2015
there are 4 blocks , and i want the histogram of these 4 blocks.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 12 Jan. 2015
[pixelCounts1, grayLevels1] = imhist(block1);
[pixelCounts2, grayLevels2] = imhist(block2);
[pixelCounts3, grayLevels3] = imhist(block3);
[pixelCounts4, grayLevels4] = imhist(block4);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!