How to apply Gaussian filter on images in MATLAB?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Asad Ali Siyal
el 17 de Feb. de 2016
Comentada: Rena Berman
el 29 de Ag. de 2018
How to apply Gaussian filter on images in MATLAB?
1 comentario
Respuesta aceptada
Wanbin Song
el 17 de Feb. de 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 comentarios
anastasia
el 4 de Mzo. de 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
el 4 de Mzo. de 2017
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!