How to apply Gaussian filter on images in MATLAB?
5 次查看(过去 30 天)
显示 更早的评论
How to apply Gaussian filter on images in MATLAB?
采纳的回答
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 个评论
anastasia
2017-3-4
Any guidance on a similar question? @Image Analyst https://in.mathworks.com/matlabcentral/answers/327870-how-to-apply-directional-gaussian-filters-to-an-image
Image Analyst
2017-3-4
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!