help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: On interpreting views of Fourier Transforms


From: Marco Caliari
Subject: Re: On interpreting views of Fourier Transforms
Date: Fri, 7 Aug 2015 16:10:21 +0200 (CEST)
User-agent: Alpine 2.10 (DEB 1266 2009-07-14)

Change

fftimage = fft2(double(origimage));

to

fftimage = fftshift(fft2(double(origimage)));

and

backimage = ifft2(fftimage);

to

backimage = ifft2(ifftshift(fftimage));

HTH,

Marco



reply via email to

[Prev in Thread] Current Thread [Next in Thread]