Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

save results after 3d matrix neighbourhood operation

1 vue (au cours des 30 derniers jours)
Asl
Asl le 24 Oct 2013
Clôturé : MATLAB Answer Bot le 20 Août 2021
how can save a series of low resolution images after operation 10x10 pixels as a single pixel (eg, mean of 10x10 pixels)
for j=1:10
for k = 50:10:850;
for m = 50:10:300;
results(?,?,j) = mean(mean(Image(k:k+10,m:m+10,j)));
end
end
end
Thanks

Réponses (1)

Andrei Bobrov
Andrei Bobrov le 24 Oct 2013
Modifié(e) : Andrei Bobrov le 24 Oct 2013
result = blockproc(Image,[10 10],@(x)mean(reshape(x.data,[],1,size(Image,3))));

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by