pylops.signalprocessing.Sliding2D#

pylops.signalprocessing.Sliding2D(Op, dims, dimsd, nwin, nover, tapertype='hanning', name='S')[source]#

2D Sliding transform operator.

Apply a transform operator Op repeatedly to slices of the model vector in forward mode and slices of the data vector in adjoint mode. More specifically, in forward mode the model vector is divided into slices, each slice is transformed, and slices are then recombined in a sliding window fashion. Both model and data are internally reshaped and interpreted as 2-dimensional arrays: each slice contains a portion of the array in the first dimension (and the entire second dimension).

This operator can be used to perform local, overlapping transforms (e.g., pylops.signalprocessing.FFT2D or pylops.signalprocessing.Radon2D) on 2-dimensional arrays.

Note

The shape of the model has to be consistent with the number of windows for this operator not to return an error. As the number of windows depends directly on the choice of nwin and nover, it is recommended to first run sliding2d_design to obtain the corresponding dims and number of windows.

Warning

Depending on the choice of nwin and nover as well as the size of the data, sliding windows may not cover the entire data. The start and end indices of each window will be displayed and returned with running sliding2d_design.

Parameters
Oppylops.LinearOperator

Transform operator

dimstuple

Shape of 2-dimensional model. Note that dims[0] should be multiple of the model size of the transform in the first dimension

dimsdtuple

Shape of 2-dimensional data

nwinint

Number of samples of window

noverint

Number of samples of overlapping part of window

tapertypestr, optional

Type of taper (hanning, cosine, cosinesquare or None)

namestr, optional

New in version 2.0.0.

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

Returns
Soppylops.LinearOperator

Sliding operator

Raises
ValueError

Identified number of windows is not consistent with provided model shape (dims).

Examples using pylops.signalprocessing.Sliding2D#

1D, 2D and 3D Sliding

1D, 2D and 3D Sliding

Patching

Patching

12. Seismic regularization

12. Seismic regularization