lsst.meas.algorithms gab1f63e0c6+e6998479bf
Loading...
Searching...
No Matches
Static Public Attributes | List of all members
lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig Class Reference
Inheritance diagram for lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig:

Static Public Attributes

 badMaskPlanes
 
 fillValue
 
 interpLength
 

Detailed Description

Config for CloughTocher2DInterpolateTask.

Definition at line 35 of file cloughTocher2DInterpolator.py.

Member Data Documentation

◆ badMaskPlanes

lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig.badMaskPlanes
static
Initial value:
= ListField[str](
doc="List of mask planes to interpolate over.",
default=["BAD", "SAT", "CR"],
)

Definition at line 38 of file cloughTocher2DInterpolator.py.

◆ fillValue

lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig.fillValue
static
Initial value:
= Field[float](
doc="Constant value to fill outside of the convex hull of the good "
"pixels. A long (longer than twice the ``interpLength``) streak of "
"bad pixels at an edge will be set to this value.",
default=0.0,
)

Definition at line 42 of file cloughTocher2DInterpolator.py.

◆ interpLength

lsst.meas.algorithms.cloughTocher2DInterpolator.CloughTocher2DInterpolateConfig.interpLength
static
Initial value:
= Field[int](
doc="Maximum number of pixels away from a bad pixel to include in "
"building the interpolant. Must be greater than or equal to 1.",
default=4,
check=lambda x: x >= 1,
)

Definition at line 48 of file cloughTocher2DInterpolator.py.


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