What do "fftshift" do exactly for an image ?
조회 수: 18 (최근 30일)
이전 댓글 표시
What do "fftshift" do exactly for an image ?
댓글 수: 0
채택된 답변
Image Analyst
2015년 2월 16일
Normally the "center" or the 0 frequency location of the spectrum is at the first and last element, and the "ends" of the spectrum (highest frequencies) are at the center of the array. That's just how the fft works. But that's confusing for display because the low frequencies are appearing in two disconnected locations. So fftshift() moves the zero frequency location to the middle of the array so that when you display it with imshow() or plot(), it looks like you'd expect.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!