How to apply Gaussian filter on images in MATLAB?

2 visualizaciones (últimos 30 días)
Asad Ali Siyal
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?

Respuesta aceptada

Wanbin Song
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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by