matlab code for average filtering?
Mostrar comentarios más antiguos
Respuestas (1)
Image Analyst
el 7 de En. de 2013
Would this do the trick:
windowSize = 5; % Whatever you want.
averagedMatrix = conv2(originalMatrix, ones(windowSize)/windowSize^2, 'same');
Categorías
Más información sobre Digital Filter Analysis en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!