pysap.extensions.sparse2d
pysap.extensions.sparse2d#
- class Filter(**kwargs)[source]#
Bases:
object
Define the structure that will be used to store the filter result.
- filter(data)[source]#
Execute the filter operation.
- Parameters
data (numpy.ndarray) – the input data.
- class Deconvolve(**kwargs)[source]#
Bases:
object
Define the structure that will be used to store the deconvolution result.
- deconvolve(img, psf)[source]#
Execute the deconvolution operation.
- Parameters
img (numpy.ndarray) – the input image.
psf (numpy.ndarray) – the input psf
- class MR2D1D(**kwargs)[source]#
Bases:
object
Define the structure that will be used to store the MR2D1D transform and reconstruction results.
- transform(data)[source]#
Execute the transform operation.
- Parameters
data (numpy.ndarray) – the input data.
- reconstruct(data)[source]#
Execute the reconstructiom operation.
- Parameters
data (numpy.ndarray) – the input data.