Hi, i have 170x170x36, (i.e,rows=170,col=170,images=36),i need to divide 36 image into 4 equal halves and find max value in each halves, so that i will get 2x2x36 as a final result.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
kaavya subramani
le 1 Nov 2016
Réponse apportée : Walter Roberson
le 1 Nov 2016
plz help me with matlab code
0 commentaires
Réponse acceptée
Walter Roberson
le 1 Nov 2016
divided_Array = mat2cell(YourArray, [85 85], [85 85], 36);
Now divided_Array{1,1}, {1,2}, {2,1}, {2,2} all exist and you can take their max()
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!