Transformation Fouier dans Python Open CV

f = np.fft.fft2(img)
fshift = np.fft.fftshift(f)
fshift = np.fft.ifftshift(fshift)
Fancy Falcon