matlab code for average filtering?
Afficher commentaires plus anciens
Réponses (1)
Image Analyst
le 7 Jan 2013
Would this do the trick:
windowSize = 5; % Whatever you want.
averagedMatrix = conv2(originalMatrix, ones(windowSize)/windowSize^2, 'same');
Catégories
En savoir plus sur Digital Filter Analysis dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!