What is Arithmetic mean filter ?

조회 수: 8 (최근 30일)
david
david 2015년 3월 28일
댓글: Jos (10584) 2015년 3월 29일
Hello. in the book "Image processing ,Gonzalez,chapter 5" i found arithmetic mean filter for noise deduction,but on internet and MATLAB i didn't find anything about it,not even a code. so what is it and what can i do for implement it?

채택된 답변

Jos (10584)
Jos (10584) 2015년 3월 28일
The arithmetic mean is the mathematical term for the "mean", i.e., the sum of the elements divided by the number of elements.
You can use this as a simple filtering technique by replacing the value X(k) in a series by the mean of the values [X(k-w) X(k-w+1) ... X(k+w-1) X(k+w)], where w is the window size of the filter. By moving over the elements of X, one by one, you have a so-called moving average filter . It is a common way to deal with noisy data. More information can be found here:
  댓글 수: 2
david
david 2015년 3월 28일
So it's called moving average filter? thank you.
Jos (10584)
Jos (10584) 2015년 3월 29일
That's indeed the common name for it, as is "running mean" or "running average".

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by