%%# Read an image
I = imread('peppers.png');
%# Create the gaussian filter with hsize = [5 5] and sigma = 2
G = fspecial('gaussian',[5 5],2);
%# Filter it
Ig = imfilter(I,G,'same');
%# Display
imshow(Ig)
'연구관련 > 프로그래밍' 카테고리의 다른 글
CMD 명령어 (1) | 2013.08.26 |
---|---|
Introduction to Matlab for Computer Vision (2) | 2013.05.30 |
[Matlab] 영상에 노이즈 첨가 (0) | 2013.04.04 |
[MATLAB] 한빛미디어 패턴인식개론 소스 다운로드 (1) | 2013.03.25 |
[MATLAB] copyfile 파일복사하기 (3) | 2012.12.06 |