Filter löschen
Filter löschen

Difference between a Linear and nonlinear Filter in Image processing?

100 Ansichten (letzte 30 Tage)
SARATH JV
SARATH JV am 4 Feb. 2018
Beantwortet: Sudaroli Sandana am 20 Aug. 2020
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?

Antworten (4)

Image Analyst
Image Analyst am 22 Dez. 2018
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 am 11 Feb. 2020
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 am 8 Aug. 2019
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 Kommentare
Soe Lei Hnin
Soe Lei Hnin am 9 Aug. 2019
Bearbeitet: Image Analyst am 9 Aug. 2019
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 am 9 Aug. 2019
If fspecial doesn't make it, then you can try to fit a Gaussian with fitnlm. See attached example.

Melden Sie sich an, um zu kommentieren.


Sudaroli Sandana
Sudaroli Sandana am 20 Aug. 2020
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