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!