필터 지우기
필터 지우기

Difference between a Linear and nonlinear Filter in Image processing?

조회 수: 100 (최근 30일)
SARATH JV
SARATH JV 2018년 2월 4일
답변: Sudaroli Sandana 2020년 8월 20일
What is the main difference between the linear an nonlinear filters that is being used in Image processing for the reduction of noise.How can i realize a filter is linear or not?

답변 (4개)

Image Analyst
Image Analyst 2018년 12월 22일
A linear filter is one that can be done with a convolution, which is just the linear sum of values in a sliding window. It can be done equivalently in the Fourier domain by multiplying the spectrum by an image. A blurring filter where you move over the image with a box filter (all the same values in the window) is an example of a linear filter.
A non-linear filter is one that cannot be done with convolution or Fourier multiplication. A sliding median filter is a simple example of a non-linear filter.

Ramzan Shahid khan
Ramzan Shahid khan 2020년 2월 11일
Linear filtering is the filtering method in which the value of output pixel is linear combinations of the neighbouring input pixels. it can be done with convolution.For examples, mean/average filters or Gaussian filtering.
A non-linear filtering is one that cannot be done with convolution or Fourier multiplication. A sliding median filter is a simple example of a non-linear filter.

Soe Lei Hnin
Soe Lei Hnin 2019년 8월 8일
Let me ask a question.I'm a little bit confusing about gaussian kernel.I found a size of [1×11] gaussian kernel.I have no idea how it got.
  댓글 수: 3
Soe Lei Hnin
Soe Lei Hnin 2019년 8월 9일
편집: Image Analyst 2019년 8월 9일
From Barcode recognition code from matlab example.Here it is.
h=single([0.022191,0.045589,0.079811,0.119065,0.151361,0.163967,0.151361,0.119065,0.079811,0.045589,0.022191])
That's used as gaussian filter in that algorithm. Is there any equation to generate those values? I tried with fspecial. I failed.Thanks for your answer.
Image Analyst
Image Analyst 2019년 8월 9일
If fspecial doesn't make it, then you can try to fit a Gaussian with fitnlm. See attached example.

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


Sudaroli Sandana
Sudaroli Sandana 2020년 8월 20일
In Linear Spatial filtering the spatial mask in convoltion process is used.In Non Linear , the ordering mechanism is used to produce output pixel ie to replace the centre pixel

Community Treasure Hunt

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

Start Hunting!

Translated by