How to apply Gaussian filter on images in MATLAB?

2 visualizzazioni (ultimi 30 giorni)
How to apply Gaussian filter on images in MATLAB?

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by