LSST Applications g0603fd7c41+022847dfd1,g0e03ccb3e3+1224bbe97e,g180d380827+5d634bbe79,g2079a07aa2+86d27d4dc4,g2305ad1205+696e5f3872,g2bbee38e9b+047b288a59,g337abbeb29+047b288a59,g33d1c0ed96+047b288a59,g3a166c0a6a+047b288a59,g3d1719c13e+f45185db35,g3de15ee5c7+f497bfeb17,g487adcacf7+886bbab8f8,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+248b16177b,g63cd9335cc+585e252eca,g858d7b2824+f45185db35,g991b906543+f45185db35,g99cad8db69+1747e75aa3,g9b9dfce982+78139cbddb,g9ddcbc5298+9a081db1e4,ga1e77700b3+a912195c07,gae0086650b+585e252eca,gb0e22166c9+60f28cb32d,gb23b769143+f45185db35,gb3a676b8dc+b4feba26a1,gb4b16eec92+f82f04eb54,gba4ed39666+c2a2e4ac27,gbb8dafda3b+b74678380d,gc120e1dc64+6f6e527edf,gc28159a63d+047b288a59,gc3e9b769f7+dcad4ace9a,gcf0d15dbbd+78139cbddb,gdaeeff99f8+f9a426f77a,ge79ae78c31+047b288a59,w.2024.19
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | Protected Member Functions | Static Protected Attributes | List of all members
lsst.meas.algorithms.reinterpolate_pixels.ReinterpolatePixelsTask Class Reference
Inheritance diagram for lsst.meas.algorithms.reinterpolate_pixels.ReinterpolatePixelsTask:

Public Member Functions

 run (self, exposure)
 

Static Public Attributes

 ConfigClass = ReinterpolatePixelsConfig
 

Protected Member Functions

 _fromFootprintList (self, fpList)
 
 _interpolateDefectList (self, exposure, defectList)
 

Static Protected Attributes

str _DefaultName = "reinterpolatePixels"
 

Detailed Description

Task to reinterpolate pixels

Definition at line 49 of file reinterpolate_pixels.py.

Member Function Documentation

◆ _fromFootprintList()

lsst.meas.algorithms.reinterpolate_pixels.ReinterpolatePixelsTask._fromFootprintList ( self,
fpList )
protected
Compute a defect list from a footprint list.

Parameters
----------
fpList : `list` of `lsst.afw.detection.Footprint`
    Footprint list to process.

Returns
-------
defects : `list` of `lsst.meas.algorithms.Defect`
    List of defects.

Notes
-----
By using `itertools.chain.from_iterable()`, the nested iterables are merged into a flat iterable,
allowing convenient iteration over all `lsst.meas.algorithms.Defect` objects.

Definition at line 76 of file reinterpolate_pixels.py.

76 def _fromFootprintList(self, fpList):
77 """Compute a defect list from a footprint list.
78
79 Parameters
80 ----------
81 fpList : `list` of `lsst.afw.detection.Footprint`
82 Footprint list to process.
83
84 Returns
85 -------
86 defects : `list` of `lsst.meas.algorithms.Defect`
87 List of defects.
88
89 Notes
90 -----
91 By using `itertools.chain.from_iterable()`, the nested iterables are merged into a flat iterable,
92 allowing convenient iteration over all `lsst.meas.algorithms.Defect` objects.
93 """
94 return list(
95 itertools.chain.from_iterable(map(Defect, afwDetection.footprintToBBoxList(fp)) for fp in fpList)
96 )
97

◆ _interpolateDefectList()

lsst.meas.algorithms.reinterpolate_pixels.ReinterpolatePixelsTask._interpolateDefectList ( self,
exposure,
defectList )
protected
Interpolate over defects specified in a defect list.

Parameters
----------
exposure : `lsst.afw.image.Exposure`
    Exposure to process.
defectList : `list` of `lsst.meas.algorithms.Defect`
    List of defects to interpolate over.

Notes
-----
``exposure`` is modified in place and will become the reinterpolated exposure.
When reinterpolating following the interpolation in ip_isr, be aware that the masks are intentionally
left grown as a side-effect of that interpolation.

Definition at line 98 of file reinterpolate_pixels.py.

98 def _interpolateDefectList(self, exposure, defectList):
99 """Interpolate over defects specified in a defect list.
100
101 Parameters
102 ----------
103 exposure : `lsst.afw.image.Exposure`
104 Exposure to process.
105 defectList : `list` of `lsst.meas.algorithms.Defect`
106 List of defects to interpolate over.
107
108 Notes
109 -----
110 ``exposure`` is modified in place and will become the reinterpolated exposure.
111 When reinterpolating following the interpolation in ip_isr, be aware that the masks are intentionally
112 left grown as a side-effect of that interpolation.
113 """
114
115 # Although `interpolateOverDefects` requires the
116 # `lsst.afw.detection.Psf` argument to be passed, it does not actually
117 # utilize it. A dummy `lsst.afw.detection.Psf` object must still be
118 # provided to prevent a TypeError.
119 dummyPsf = afwDetection.Psf()
120 if self.config.fallbackValue is None:
121 fallbackValue = afwMath.makeStatistics(exposure.image, afwMath.MEANCLIP).getValue()
122 else:
123 fallbackValue = self.config.fallbackValue
124 if "INTRP" not in exposure.mask.getMaskPlaneDict():
125 exposure.mask.addMaskPlane("INTRP")
126 interpolateOverDefects(exposure.maskedImage, dummyPsf, defectList, fallbackValue, True)
Statistics makeStatistics(lsst::afw::image::Image< Pixel > const &img, lsst::afw::image::Mask< image::MaskPixel > const &msk, int const flags, StatisticsControl const &sctrl=StatisticsControl())
Handle a watered-down front-end to the constructor (no variance)
Definition Statistics.h:361

◆ run()

lsst.meas.algorithms.reinterpolate_pixels.ReinterpolatePixelsTask.run ( self,
exposure )
Reinterpolate pixels over ``exposure``.

Parameters
----------
exposure : `lsst.afw.image.Exposure`
    Exposure to interpolate over.

Notes
-----
``exposure`` is modified in place and will become the reinterpolated exposure.

Definition at line 55 of file reinterpolate_pixels.py.

55 def run(self, exposure):
56 """Reinterpolate pixels over ``exposure``.
57
58 Parameters
59 ----------
60 exposure : `lsst.afw.image.Exposure`
61 Exposure to interpolate over.
62
63 Notes
64 -----
65 ``exposure`` is modified in place and will become the reinterpolated exposure.
66 """
67 mask = exposure.mask
68
69 thresh = afwDetection.Threshold(
70 mask.getPlaneBitMask(self.config.maskNameList), afwDetection.Threshold.BITMASK
71 )
72 fpSet = afwDetection.FootprintSet(mask, thresh)
73 defectList = self._fromFootprintList(fpSet.getFootprints())
74 self._interpolateDefectList(exposure, defectList)
75

Member Data Documentation

◆ _DefaultName

str lsst.meas.algorithms.reinterpolate_pixels.ReinterpolatePixelsTask._DefaultName = "reinterpolatePixels"
staticprotected

Definition at line 53 of file reinterpolate_pixels.py.

◆ ConfigClass

lsst.meas.algorithms.reinterpolate_pixels.ReinterpolatePixelsTask.ConfigClass = ReinterpolatePixelsConfig
static

Definition at line 52 of file reinterpolate_pixels.py.


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