How to decide window size for a moving average filter?

조회 수: 94 (최근 30일)
Swanand Kulkarni
Swanand Kulkarni 2016년 12월 6일
댓글: yusra Ch 2020년 2월 20일
Hello all, I have some noisy data in the form of x and y variables. I plan to use moving average filer to get satisfactory results, yet as close as possible to the real data. I understand that higher window size means more smooth data, and hence less realistic. Is that correct? Is window size of 5 considered decent enough to establish relationship between the variables in general? Any leads are highly appreciated. Thanks and regards, Swanand.

채택된 답변

Image Analyst
Image Analyst 2016년 12월 7일
편집: Image Analyst 2019년 1월 28일
It could be. Who's to say? It's more or less of a judgement call as to what amount of smoothing is best, isn't it. You could determine the sum of absolute differences for different window sizes and plot it. Maybe some pattern will jump out at you, like a knee in the curve.
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 20;
numPoints = 5000;
noiseSignal = rand(1, numPoints);
x = linspace(0, 300, numPoints);
period = 100;
cleanSignal = cos(2*pi*x / period);
noisySignal = cleanSignal + noiseSignal;
subplot(2, 1, 1);
plot(x, noisySignal, 'b-', 'LineWidth', 2);
grid on;
xlabel('x', 'FontSize', fontSize);
ylabel('Noisy Signal', 'FontSize', fontSize);
windowSizes = 3 : 3 : 51
for k = 1 : length(windowSizes)
smoothedSignal = movmean(noisySignal, windowSizes(k));
sad(k) = sum(abs(smoothedSignal - noisySignal))
end
subplot(2, 1, 2);
plot(windowSizes, sad, 'b*-', 'LineWidth', 2);
grid on;
xlabel('Window Size', 'FontSize', fontSize);
ylabel('SAD', 'FontSize', fontSize);
Pick the smallest window size where the SAD seems to start to flatten out. Going beyond that (to larger window sizes) really doesn't produce much more benefit (smoothing) and will take longer.
  댓글 수: 11
Image Analyst
Image Analyst 2019년 3월 7일
You probably have periodic structures in your signal (which you forgot to attach).
Ekaterina Wiktorski
Ekaterina Wiktorski 2019년 3월 8일
Yes! That's exactly the case!

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

Walter Roberson
Walter Roberson 2016년 12월 7일
A moving average filter is one of the varieties of discrete lowpass filter. You can choose your width according to your attenuation needs. See http://ptolemy.eecs.berkeley.edu/eecs20/week12/freqResponseRA.html

Siyab Khan
Siyab Khan 2019년 1월 28일
How can we select a wind size for the selection of DNA sequence like
ATCGGGCTTACGG
window length size 5 to read the sequence please drop the code.
  댓글 수: 3
Siyab Khan
Siyab Khan 2019년 1월 28일
basically i am working on the CLassificaion of DNA sequence using neural networks i have a DNA sequcence like
ATCGTGGCCAATGGTAACCG...... upto 500 0r more Nucleotides
i converted it to binary now i want my network read a stream of five charecters 10 and 15 so how to write code for it'
Image Analyst
Image Analyst 2019년 1월 28일
I don't know what that means. Do you want to read 5 characters from somewhere? Or 10? Or 15? Where is this stream coming from? A file? If so, have you seen fread()?

댓글을 달려면 로그인하십시오.


Greg Heath
Greg Heath 2019년 3월 9일
I'm very surprised that none of the previous responses mentioned
1. Determine characteristic self correlation lengths using output autocorrelation functions
2.. Determine characteristic cross correlation lengths using
input-output crosscorrelation functions
Hope this helps.
Greg
  댓글 수: 2
Hee Seung Kim
Hee Seung Kim 2019년 11월 6일
Hi Greg, What does it mean to use the correlation length?
for example, lets say I have an image with size of 400 [vertical pixels] x 600 [horizontal pixels], then how to find an optimal window size for moving avearge filter among 3x3, 5x5, 7x7, 11x11, 13x13, 15x15 window size?
PS) could you see whether my approach is correct or not?
what I am doing now is that..
[step 1]
A: original input image
B3: the result by using averaging filter with 3x3 window size
B5: the result by using averaging filter with 5x5 window size
B7: the result by using averaging filter with 7x7 window size
B9, B11, B13, B15.
I can get seven binary images(intensity of each pixel is 0 or 1) for B3~B15 using a fixed threshold. FYI, the object area is changing gradually depending on window size.
[step 2]
I calculated a numerical value between two adjacent filters such as mean squared error
C35: MSE between B3 and B5
C57: MSE between B5 and B7
C79: MSE between B7 and B9
C911: MSE between B9 and B11
C1113: MSE between B11 and B13
C1315: MSE between B13 and B15
[step 3]
find when I can get maximum gradient among C35, C57, ..., C1315.
Thank you in advance
yusra Ch
yusra Ch 2020년 2월 20일
Could you please explain to me in case for example C35 and C57 with a maximum gradient comparing to the rest. Which one of them could be considered at the best length 3, 5 or 7 ?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by