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