MATLAB: Advantages/Disadvantages of using and not using a gaussian filter

filterimage processingnoise

Usually and conceptually, when it comes to noise removal for a picture with gaussian noise, what are the advantages and disadvantages between using a gaussian averaging filter and not filtering the image at all?

Best Answer

hi ,
Properties of Gaussian Filtering :
•Gaussian smoothingis very effective for removing Gaussian noise
•The weightsgive higher significance to pixels near the edge (reduces edge blurring)
•They are linearlow pass filters
•Computationally efficient(large filters are implemented using small 1D filters)
•Rotationally symmetric(perform the same in all directions)
•The degree of smoothingis controlled by σ(larger σfor more intensive smoothing)
So in general, you have many possibilities : try Gaussian filter, and compare it with other algorithms such as Wiener filter, Median filter( circular, rectangular, diagonal,...), Gabor Filter, Kalman filter ,...