How to apply Gaussian filter on images in MATLAB?

5 ビュー (過去 30 日間)
Asad Ali Siyal
Asad Ali Siyal 2016 年 2 月 17 日
コメント済み: Rena Berman 2018 年 8 月 29 日
How to apply Gaussian filter on images in MATLAB?
  1 件のコメント
Rena Berman
Rena Berman 2018 年 8 月 29 日
(Answers Dev) Restored edit

サインインしてコメントする。

採用された回答

Wanbin Song
Wanbin Song 2016 年 2 月 17 日
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 件のコメント
anastasia
anastasia 2017 年 3 月 4 日
Image Analyst
Image Analyst 2017 年 3 月 4 日
You can use the rotation matrix https://en.wikipedia.org/wiki/Rotation_matrix

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by