pylops.signalprocessing.FFT2D#

pylops.signalprocessing.FFT2D(dims, axes=(-2, -1), nffts=None, sampling=1.0, norm='ortho', real=False, ifftshift_before=False, fftshift_after=False, engine='numpy', dtype='complex128', name='F')[source]#

Two dimensional Fast-Fourier Transform.

Apply two dimensional Fast-Fourier Transform (FFT) to any pair of axes of a multi-dimensional array.

Using the default NumPy engine, the FFT operator is an overload to either the NumPy numpy.fft.fft2 (or numpy.fft.rfft2 for real models) in forward mode, and to numpy.fft.ifft2 (or numpy.fft.irfft2 for real models) in adjoint mode, or their CuPy equivalents. Alternatively, when the SciPy engine is chosen, the overloads are of scipy.fft.fft2 (or scipy.fft.rfft2 for real models) in forward mode, and to scipy.fft.ifft2 (or scipy.fft.irfft2 for real models) in adjoint mode.

When using real=True, the result of the forward is also multiplied by \(\sqrt{2}\) for all frequency bins except zero and Nyquist, and the input of the adjoint is multiplied by \(1 / \sqrt{2}\) for the same frequencies.

For a real valued input signal, it is advised to use the flag real=True as it stores the values of the Fourier transform of the last axis in axes at positive frequencies only as values at negative frequencies are simply their complex conjugates.

Parameters
dimstuple

Number of samples for each dimension

axestuple, optional

New in version 2.0.0.

Pair of axes along which FFT2D is applied

nfftstuple or int, optional

Number of samples in Fourier Transform for each axis in axes. In case only one dimension needs to be specified, use None for the other dimension in the tuple. An axis with None will use dims[axis] as nfft. When supplying a tuple, the length must be 2. When a single value is passed, it will be used for both axes. As such the default is equivalent to nffts=(None, None).

samplingtuple or float, optional

Sampling steps for each axis in axes. When supplied a single value, it is used for both axes. Unlike nffts, any None will not be converted to the default value.

norm{“ortho”, “none”, “1/n”}, optional

New in version 1.17.0.

  • “ortho”: Scales forward and adjoint FFT transforms with \(1/\sqrt{N_F}\), where \(N_F\) is the number of samples in the Fourier domain given by product of all elements of nffts.

  • “none”: Does not scale the forward or the adjoint FFT transforms.

  • “1/n”: Scales both the forward and adjoint FFT transforms by \(1/N_F\).

Note

For “none” and “1/n”, the operator is not unitary, that is, the adjoint is not the inverse. To invert the operator, simply use Op \ y.

realbool, optional

Model to which fft is applied has real numbers (True) or not (False). Used to enforce that the output of adjoint of a real model is real. Note that the real FFT is applied only to the first dimension to which the FFT2D operator is applied (last element of axes)

ifftshift_beforetuple or bool, optional

Apply ifftshift (True) or not (False) to model vector (before FFT). Consider using this option when the model vector’s respective axis is symmetric with respect to the zero value sample. This will shift the zero value sample to coincide with the zero index sample. With such an arrangement, FFT will not introduce a sample-dependent phase-shift when compared to the continuous Fourier Transform. When passing a single value, the shift will the same for every axis in axes. Pass a tuple to specify which dimensions are shifted.

fftshift_aftertuple or bool, optional

Apply fftshift (True) or not (False) to data vector (after FFT). Consider using this option when you require frequencies to be arranged naturally, from negative to positive. When not applying fftshift after FFT, frequencies are arranged from zero to largest positive, and then from negative Nyquist to the frequency bin before zero. When passing a single value, the shift will the same for every axis in axes. Pass a tuple to specify which dimensions are shifted.

enginestr, optional

New in version 1.17.0.

Engine used for fft computation (numpy or scipy).

dtypestr, optional

Type of elements in input array. Note that the dtype of the operator is the corresponding complex type even when a real type is provided. In addition, note that the NumPy backend does not support returning dtype different than complex128. As such, when using the NumPy backend, arrays will be force-casted to types corresponding to the supplied dtype. The SciPy backend supports all precisions natively. Under both backends, when a real dtype is supplied, a real result will be enforced on the result of the rmatvec and the input of the matvec.

namestr, optional

New in version 2.0.0.

Name of operator (to be used by pylops.utils.describe.describe)

Raises
ValueError
  • If dims has less than two elements.

  • If axes does not have exactly two elements.

  • If nffts or sampling are not either a single value or a tuple with two elements.

  • If norm is not one of “ortho”, “none”, or “1/n”.

NotImplementedError

If engine is neither numpy, nor scipy.

See also

FFT

One-dimensional FFT

FFTND

N-dimensional FFT

Notes

The FFT2D operator (using norm="ortho") applies the two-dimensional forward Fourier transform to a signal \(d(y, x)\) in forward mode:

\[D(k_y, k_x) = \mathscr{F} (d) = \frac{1}{\sqrt{N_F}} \iint\limits_{-\infty}^\infty d(y, x) e^{-j2\pi k_yy} e^{-j2\pi k_xx} \,\mathrm{d}y \,\mathrm{d}x\]

Similarly, the two-dimensional inverse Fourier transform is applied to the Fourier spectrum \(D(k_y, k_x)\) in adjoint mode:

\[d(y,x) = \mathscr{F}^{-1} (D) = \frac{1}{\sqrt{N_F}} \iint\limits_{-\infty}^\infty D(k_y, k_x) e^{j2\pi k_yy} e^{j2\pi k_xx} \,\mathrm{d}k_y \,\mathrm{d}k_x\]

where \(N_F\) is the number of samples in the Fourier domain given by the product of the element of nffts. Both operators are effectively discretized and solved by a fast iterative algorithm known as Fast Fourier Transform. Note that the FFT2D operator (using norm="ortho") is a special operator in that the adjoint is also the inverse of the forward mode. For other norms, this does not hold (see norm help). However, for any norm, the 2D Fourier transform is Hermitian for real input signals.

Attributes
dimsdtuple

Shape of the array after the forward, but before linearization.

For example, y_reshaped = (Op * x.ravel()).reshape(Op.dimsd).

f1numpy.ndarray

Discrete Fourier Transform sample frequencies along axes[0]

f2numpy.ndarray

Discrete Fourier Transform sample frequencies along axes[1]

realbool

When True, uses rfft2/irfft2

rdtypebool

Expected input type to the forward

cdtypebool

Output type of the forward. Complex equivalent to rdtype.

shapetuple

Operator shape

clinearbool

New in version 1.17.0.

Operator is complex-linear. Is false when either real=True or when dtype is not a complex type.

explicitbool

Operator contains a matrix that can be solved explicitly (True) or not (False)

Examples using pylops.signalprocessing.FFT2D#

Fourier Transform

Fourier Transform

Patching

Patching

Total Variation (TV) Regularization

Total Variation (TV) Regularization

12. Seismic regularization

12. Seismic regularization

14. Seismic wavefield decomposition

14. Seismic wavefield decomposition

18. Deblending

18. Deblending