matlab code for average filtering?

pls help to write matlab code for average filtering....

2 Kommentare

doc filter
Jan
Jan am 7 Jan. 2013
Do you want a moving average, a block average, a moving median (see tags) or a block median filter?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 7 Jan. 2013

0 Stimmen

Would this do the trick:
windowSize = 5; % Whatever you want.
averagedMatrix = conv2(originalMatrix, ones(windowSize)/windowSize^2, 'same');

Gefragt:

am 7 Jan. 2013

Community Treasure Hunt

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

Start Hunting!

Translated by