MATLAB: How to apply Gaussian filter on images in MATLAB

gaussian fillter images matlab image processing noise removalImage Processing Toolbox

How to apply Gaussian filter on images in MATLAB?

Best Answer

You can use imgaussfilt function for 2-D gaussian filtering as below:
I = imread('mypic.jpg');
Iblur = imgaussfilt(I, 1);
where the second input of imgaussfilt is standard deviation sigma.