How to apply Gaussian filter on images in MATLAB?

5 views (last 30 days)
How to apply Gaussian filter on images in MATLAB?

Accepted Answer

Wanbin Song
Wanbin Song on 17 Feb 2016
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.
  6 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!