pylops.signalprocessing.Patch2D¶
-
pylops.signalprocessing.Patch2D(Op, dims, dimsd, nwin, nover, nop, tapertype='hanning', design=False)[source]¶ 2D Patch transform operator.
Apply a transform operator
Oprepeatedly to patches of the model vector in forward mode and patches of the data vector in adjoint mode. More specifically, in forward mode the model vector is divided into patches, each patch is transformed, and patches are then recombined together. Both model and data are internally reshaped and interpreted as 2-dimensional arrays: each patch contains a portion of the array in both the first and second dimension.This operator can be used to perform local, overlapping transforms (e.g.,
pylops.signalprocessing.FFT2Dorpylops.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
nwinandnover, it is recommended to usedesign=Trueif unsure about the choicedimsand use the number of windows printed on screen to define such input parameter.Warning
Depending on the choice of nwin and nover as well as the size of the data, patches may not cover the entire size of the data. The start and end indices of each window can be displayed using
design=Truewhile defining the best patching approach.Parameters: - Op :
pylops.LinearOperator Transform operator
- dims :
tuple Shape of 2-dimensional model. Note that
dims[0]anddims[1]should be multiple of the model size of the transform in their respective dimensions- dimsd :
tuple Shape of 2-dimensional data
- nwin :
tuple Number of samples of window
- nover :
tuple Number of samples of overlapping part of window
- nop :
tuple Size of model in the transformed domain
- tapertype :
str, optional Type of taper (
hanning,cosine,cosinesquareorNone)- design :
bool, optional Print number of sliding window (
True) or not (False)
Returns: - Sop :
pylops.LinearOperator Sliding operator
Raises: - ValueError
Identified number of windows is not consistent with provided model shape (
dims).
See also
Sliding2d- 2D Sliding transform operator.
- Op :