matlab code for average filtering?
Mostra commenti meno recenti
Risposte (1)
Image Analyst
il 7 Gen 2013
Would this do the trick:
windowSize = 5; % Whatever you want.
averagedMatrix = conv2(originalMatrix, ones(windowSize)/windowSize^2, 'same');
Categorie
Scopri di più su Digital Filter Analysis in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!