How to apply Gaussian filter on images in MATLAB?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Asad Ali Siyal
le 17 Fév 2016
Commenté : Rena Berman
le 29 Août 2018
How to apply Gaussian filter on images in MATLAB?
1 commentaire
Réponse acceptée
Wanbin Song
le 17 Fév 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 commentaires
anastasia
le 4 Mar 2017
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
le 4 Mar 2017
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!