lsst.ip.diffim g3dd0db44d0+dde568935d
Loading...
Searching...
No Matches
lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelMapper Class Reference
Inheritance diagram for lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelMapper:
lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask lsst.ip.diffim.imageMapReduce.ImageMapper

Public Member Functions

 __init__ (self, *args, **kwargs)
 
 run (self, subExposure, expandedSubExposure, fullBBox, template, science, alTaskResult=None, psfMatchingKernel=None, preConvKernel=None, **kwargs)
 
 computeVarianceMean (self, exposure)
 
 computeCommonShape (self, *shapes)
 
 computeDiffimCorrection (self, kappa, svar, tvar)
 
 computeScoreCorrection (self, kappa, svar, tvar, preConvArr)
 
 calculateVariancePlane (self, vplane1, vplane2, varMean1, varMean2, c1ft, c2ft)
 
 computeCorrectedDiffimPsf (self, corrft, psfOld)
 
 computeCorrectedImage (self, corrft, imgOld)
 

Static Public Member Functions

 padCenterOriginArray (A, tuple newShape, useInverse=False)
 
 estimateVariancePlane (vplane1, vplane2, c1ft, c2ft)
 

Public Attributes

 statsControl = afwMath.StatisticsControl()
 
 freqSpaceShape = tuple(commonShape)
 

Static Public Attributes

 ConfigClass = DecorrelateALKernelConfig
 

Static Protected Attributes

str _DefaultName = "ip_diffim_decorrelateALKernel"
 

Detailed Description

Task to be used as an ImageMapper for performing
A&L decorrelation on subimages on a grid across a A&L difference image.

This task subclasses DecorrelateALKernelTask in order to implement
all of that task's configuration parameters, as well as its `run` method.

Definition at line 653 of file imageDecorrelation.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelMapper.__init__ ( self,
* args,
** kwargs )

Definition at line 664 of file imageDecorrelation.py.

Member Function Documentation

◆ calculateVariancePlane()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.calculateVariancePlane ( self,
vplane1,
vplane2,
varMean1,
varMean2,
c1ft,
c2ft )
inherited
Full propagation of the variance planes of the original exposures.

The original variance planes of independent pixels are convolved with the
image space square of the overall kernels.

Parameters
----------
vplane1, vplane2 : `numpy.ndarray` of `float`
    Variance planes of the original (before pre-convolution or matching)
    exposures.
varMean1, varMean2 : `float`
    Replacement average values for non-finite ``vplane1`` and ``vplane2`` values respectively.

c1ft, c2ft : `numpy.ndarray` of `complex`
    The overall convolution that includes the matching and the
    afterburner in frequency space. The result of either
    ``computeScoreCorrection`` or ``computeDiffimCorrection``.

Returns
-------
vplaneD : `numpy.ndarray` of `float`
  The variance plane of the difference/score images.

Notes
-----
See DMTN-179 Section 5 about the variance plane calculations.

Infs and NaNs are allowed and kept in the returned array.

Definition at line 523 of file imageDecorrelation.py.

◆ computeCommonShape()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.computeCommonShape ( self,
* shapes )
inherited
Calculate the common shape for FFT operations. Set `self.freqSpaceShape`
internally.

Parameters
----------
shapes : one or more `tuple` of `int`
    Shapes of the arrays. All must have the same dimensionality.
    At least one shape must be provided.

Returns
-------
None.

Notes
-----
For each dimension, gets the smallest even number greater than or equal to
`N1+N2-1` where `N1` and `N2` are the two largest values.
In case of only one shape given, rounds up to even each dimension value.

Definition at line 316 of file imageDecorrelation.py.

◆ computeCorrectedDiffimPsf()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.computeCorrectedDiffimPsf ( self,
corrft,
psfOld )
inherited
Compute the (decorrelated) difference image's new PSF.

Parameters
----------
corrft : `numpy.ndarray`
    The frequency space representation of the correction calculated by
    `computeCorrection`. Shape must be `self.freqSpaceShape`.
psfOld : `numpy.ndarray`
    The psf of the difference image to be corrected.

Returns
-------
correctedPsf : `lsst.meas.algorithms.KernelPsf`
    The corrected psf, same shape as `psfOld`, sum normed to 1.

Notes
-----
There is no algorithmic guarantee that the corrected psf can
meaningfully fit to the same size as the original one.

Definition at line 584 of file imageDecorrelation.py.

◆ computeCorrectedImage()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.computeCorrectedImage ( self,
corrft,
imgOld )
inherited
Compute the decorrelated difference image.

Parameters
----------
corrft : `numpy.ndarray`
    The frequency space representation of the correction calculated by
    `computeCorrection`. Shape must be `self.freqSpaceShape`.
imgOld : `numpy.ndarray`
    The difference image to be corrected.

Returns
-------
imgNew : `numpy.ndarray`
    The corrected image, same size as the input.

Definition at line 620 of file imageDecorrelation.py.

◆ computeDiffimCorrection()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.computeDiffimCorrection ( self,
kappa,
svar,
tvar )
inherited
Compute the Lupton decorrelation post-convolution kernel for decorrelating an
image difference, based on the PSF-matching kernel.

Parameters
----------
kappa : `numpy.ndarray` of `float`
    A matching kernel 2-d numpy.array derived from Alard & Lupton PSF matching.
svar : `float` > 0.
    Average variance of science image used for PSF matching.
tvar : `float` > 0.
    Average variance of the template (matched) image used for PSF matching.

Returns
-------
corrft : `numpy.ndarray` of `float`
    The frequency space representation of the correction. The array is real (dtype float).
    Shape is `self.freqSpaceShape`.

cnft, crft : `numpy.ndarray` of `complex`
    The overall convolution (pre-conv, PSF matching, noise correction) kernel
    for the science and template images, respectively for the variance plane
    calculations. These are intermediate results in frequency space.

Notes
-----
The maximum correction factor converges to `sqrt(tvar/svar)` towards high frequencies.
This should be a plausible value.

Definition at line 396 of file imageDecorrelation.py.

◆ computeScoreCorrection()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.computeScoreCorrection ( self,
kappa,
svar,
tvar,
preConvArr )
inherited
Compute the correction kernel for a score image.

Parameters
----------
kappa : `numpy.ndarray`
    A matching kernel 2-d numpy.array derived from Alard & Lupton PSF matching.
svar : `float`
    Average variance of science image used for PSF matching (before pre-convolution).
tvar : `float`
    Average variance of the template (matched) image used for PSF matching.
preConvArr : `numpy.ndarray`
    The pre-convolution kernel of the science image. It should be the PSF
    of the science image or an approximation of it. It must be normed to sum 1.

Returns
-------
corrft : `numpy.ndarray` of `float`
    The frequency space representation of the correction. The array is real (dtype float).
    Shape is `self.freqSpaceShape`.
cnft, crft : `numpy.ndarray` of `complex`
    The overall convolution (pre-conv, PSF matching, noise correction) kernel
    for the science and template images, respectively for the variance plane
    calculations. These are intermediate results in frequency space.

Notes
-----
To be precise, the science image should be _correlated_ by ``preConvArray`` but this
does not matter for this calculation.

``cnft``, ``crft`` contain the scaling factor as well.

Definition at line 436 of file imageDecorrelation.py.

◆ computeVarianceMean()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.computeVarianceMean ( self,
exposure )
inherited

Definition at line 84 of file imageDecorrelation.py.

◆ estimateVariancePlane()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.estimateVariancePlane ( vplane1,
vplane2,
c1ft,
c2ft )
staticinherited
Estimate the variance planes.

The estimation assumes that around each pixel the surrounding
pixels' sigmas within the convolution kernel are the same.

Parameters
----------
vplane1, vplane2 : `numpy.ndarray` of `float`
    Variance planes of the original (before pre-convolution or matching)
    exposures.
c1ft, c2ft : `numpy.ndarray` of `complex`
    The overall convolution that includes the matching and the
    afterburner in frequency space. The result of either
    ``computeScoreCorrection`` or ``computeDiffimCorrection``.

Returns
-------
vplaneD : `numpy.ndarray` of `float`
  The estimated variance plane of the difference/score image
  as a weighted sum of the input variances.

Notes
-----
See DMTN-179 Section 5 about the variance plane calculations.

Definition at line 491 of file imageDecorrelation.py.

◆ padCenterOriginArray()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.padCenterOriginArray ( A,
tuple newShape,
useInverse = False )
staticinherited
Zero pad an image where the origin is at the center and replace the
origin to the corner as required by the periodic input of FFT. Implement also
the inverse operation, crop the padding and re-center data.

Parameters
----------
A : `numpy.ndarray`
    An array to copy from.
newShape : `tuple` of `int`
    The dimensions of the resulting array. For padding, the resulting array
    must be larger than A in each dimension. For the inverse operation this
    must be the original, before padding size of the array.
useInverse : bool, optional
    Selector of forward, add padding, operation (False)
    or its inverse, crop padding, operation (True).

Returns
-------
R : `numpy.ndarray`
    The padded or unpadded array with shape of `newShape` and the same dtype as A.

Notes
-----
For odd dimensions, the splitting is rounded to
put the center pixel into the new corner origin (0,0). This is to be consistent
e.g. for a dirac delta kernel that is originally located at the center pixel.

Definition at line 349 of file imageDecorrelation.py.

◆ run()

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelMapper.run ( self,
subExposure,
expandedSubExposure,
fullBBox,
template,
science,
alTaskResult = None,
psfMatchingKernel = None,
preConvKernel = None,
** kwargs )
Perform decorrelation operation on `subExposure`, using
`expandedSubExposure` to allow for invalid edge pixels arising from
convolutions.

This method performs A&L decorrelation on `subExposure` using
local measures for image variances and PSF. `subExposure` is a
sub-exposure of the non-decorrelated A&L diffim. It also
requires the corresponding sub-exposures of the template
(`template`) and science (`science`) exposures.

Parameters
----------
subExposure : `lsst.afw.image.Exposure`
    the sub-exposure of the diffim
expandedSubExposure : `lsst.afw.image.Exposure`
    the expanded sub-exposure upon which to operate
fullBBox : `lsst.geom.Box2I`
    the bounding box of the original exposure
template : `lsst.afw.image.Exposure`
    the corresponding sub-exposure of the template exposure
science : `lsst.afw.image.Exposure`
    the corresponding sub-exposure of the science exposure
alTaskResult : `lsst.pipe.base.Struct`
    the result of A&L image differencing on `science` and
    `template`, importantly containing the resulting
    `psfMatchingKernel`. Can be `None`, only if
    `psfMatchingKernel` is not `None`.
psfMatchingKernel : Alternative parameter for passing the
    A&L `psfMatchingKernel` directly.
preConvKernel : If not None, then pre-filtering was applied
    to science exposure, and this is the pre-convolution
    kernel.
kwargs :
    additional keyword arguments propagated from
    `ImageMapReduceTask.run`.

Returns
-------
A `pipeBase.Struct` containing:

    - ``subExposure`` : the result of the `subExposure` processing.
    - ``decorrelationKernel`` : the decorrelation kernel, currently
        not used.

Notes
-----
This `run` method accepts parameters identical to those of
`ImageMapper.run`, since it is called from the
`ImageMapperTask`. See that class for more information.

Reimplemented from lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.

Definition at line 667 of file imageDecorrelation.py.

Member Data Documentation

◆ _DefaultName

str lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask._DefaultName = "ip_diffim_decorrelateALKernel"
staticprotectedinherited

Definition at line 65 of file imageDecorrelation.py.

◆ ConfigClass

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.ConfigClass = DecorrelateALKernelConfig
staticinherited

Definition at line 64 of file imageDecorrelation.py.

◆ freqSpaceShape

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.freqSpaceShape = tuple(commonShape)
inherited

Definition at line 345 of file imageDecorrelation.py.

◆ statsControl

lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelTask.statsControl = afwMath.StatisticsControl()
inherited

Definition at line 79 of file imageDecorrelation.py.


The documentation for this class was generated from the following file: