How to use lpfilter for filtering in frequency domain of an image?
이전 댓글 표시
I used the following codes f=imread('phalenges.jpg'); [M,N]=size(f); sig=10; F=fft2(f); H=lpfilter('gaussian',[M,N],'sig'); G=H.*F; g=real(ifft2(G)); imshow(g,[])
But following error message was displayed
??? Undefined function or method 'lpfilter' for input arguments of type 'char'.
답변 (1개)
serwan Bamerni
2015년 5월 2일
0 개 추천
you should download the lpfilter.m file from internet and put it your work directory to be able to use this function
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!