How to apply Gaussian filter on images in MATLAB?

2 次查看(过去 30 天)
How to apply Gaussian filter on images in MATLAB?

采纳的回答

Wanbin Song
Wanbin Song 2016-2-17
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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by