How to apply Gaussian filter on images in MATLAB?

4 Ansichten (letzte 30 Tage)
Asad Ali Siyal
Asad Ali Siyal am 17 Feb. 2016
Kommentiert: Rena Berman am 29 Aug. 2018
How to apply Gaussian filter on images in MATLAB?

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by