How to apply Gaussian filter on images in MATLAB?
조회 수: 8 (최근 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.
댓글 수: 6
anastasia
2017년 3월 4일
Any guidance on a similar question? @Image Analyst https://in.mathworks.com/matlabcentral/answers/327870-how-to-apply-directional-gaussian-filters-to-an-image
Image Analyst
2017년 3월 4일
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!