Effacer les filtres
Effacer les filtres

Difference between a Linear and nonlinear Filter in Image processing?

100 vues (au cours des 30 derniers jours)
SARATH JV
SARATH JV le 4 Fév 2018
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?

Réponses (4)

Image Analyst
Image Analyst le 22 Déc 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 le 11 Fév 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 le 8 Août 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 commentaires
Soe Lei Hnin
Soe Lei Hnin le 9 Août 2019
Modifié(e) : Image Analyst le 9 Août 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 le 9 Août 2019
If fspecial doesn't make it, then you can try to fit a Gaussian with fitnlm. See attached example.

Connectez-vous pour commenter.


Sudaroli Sandana
Sudaroli Sandana le 20 Août 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