How to apply Gaussian filter on images in MATLAB?

2 vues (au cours des 30 derniers jours)
Asad Ali Siyal
Asad Ali Siyal le 17 Fév 2016
Commenté : Rena Berman le 29 Août 2018
How to apply Gaussian filter on images in MATLAB?

Réponse acceptée

Wanbin Song
Wanbin Song le 17 Fév 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 commentaires
Image Analyst
Image Analyst le 4 Mar 2017
You can use the rotation matrix https://en.wikipedia.org/wiki/Rotation_matrix

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by