How to apply Gaussian filter on images in MATLAB?
조회 수: 5 (최근 30일)
이전 댓글 표시
How to apply Gaussian filter on images in MATLAB?
채택된 답변
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.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!