Anti-Aliasing Filter for matlab imresize
이전 댓글 표시
Hi, I am doing a project on computer graphics and have been asked to implement the matlab's imresize function in C++, using bicubic interpolation.
As you know, if the scale factor is less than one,we need a anti-aliasing filter while interpolation. However I have no experience in filter design and at the moment I'm still relatively new to matlab and the image processing toolbox. I've tried using the fspecial gaussian filter but it doesnt seem to have muxh effect. Can you give me any tips on how to produce an appropriate filter in matlab, or point me to relevant information.
Any help is appeciated,
many thanks,
Xifei WU 2011.6.14
댓글 수: 3
David Young
2011년 6월 14일
I've often observed people using the fspecial Gaussian option incorrectly. Note that you need to set the SIGMA parameter to an appropriate value for the spatial smoothing scale (this would be related to the scale factor for resizing) and to set the HSIZE argument to be large enough to cover most of the support for the filter. Usually making HSIZE 5 or 6 times SIGMA is plenty. Perhaps you should check this first.
Wu
2011년 6월 14일
David Young
2011년 6월 14일
I'm sorry, but I don't know about the internal operation of imresize. I guess with some effort it would be possible to work out the anitaliasing method by applying imresize to simple examples.
답변 (2개)
Jan
2011년 6월 14일
2 개 추천
You can look inside the IMRESIZE function itself. All necessary methods are implemented there.
Yoav
2011년 7월 17일
0 개 추천
What does the function imresizemex do? (I don't care about the specific implementation, just to understand how to output is defined by the input). Thanks in advance, Yoav
카테고리
도움말 센터 및 File Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!