How to apply Gaussian filter on images in MATLAB?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Asad Ali Siyal
il 17 Feb 2016
Commentato: Rena Berman
il 29 Ago 2018
How to apply Gaussian filter on images in MATLAB?
Risposta accettata
Wanbin Song
il 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 Commenti
anastasia
il 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
il 4 Mar 2017
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!