How can I set low-pass filter ( frequency range ) for an image ?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi guys
- How can I design low-pass filter ( frequency range ) for an image with this option ?
- Item one
- my image class is uint8 ( for example 256*256 )I have to implement function to get frequency from user and the function should be ignoring frequency that bigger than the frequencysomething like that ignrImFreq(im,Freq)this function must be ignore the image frequency bigger than Freq
- Are there any function to doing this?
- if there is one would you explain the parameters ...thx all of you
댓글 수: 0
답변 (1개)
Walter Roberson
2012년 12월 8일
There is no function for it.
There is more than one way you can handle this. One way is to fft2() the image, zero the frequency components that are above the given frequency, ifft2() back. You will also want to convert the output back to uint8() afterwards.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!