ScaleVarianceConfig#

class lsst.meas.algorithms.ScaleVarianceConfig(*args, **kw)#

Bases: Config

Attributes Summary

background

Background subtraction (ConfigurableInstance, default <class 'lsst.meas.algorithms.subtractBackground.SubtractBackgroundConfig'>)

limit

Maximum variance scaling value to permit (float, default 10.0)

maskPlanes

Mask planes for pixels to ignore when scaling variance (List, default ['DETECTED', 'DETECTED_NEGATIVE', 'BAD', 'SAT', 'NO_DATA', 'INTRP'])

Methods Summary

setDefaults()

Subclass hook for computing defaults.

Attributes Documentation

background#

Background subtraction (ConfigurableInstance, default <class 'lsst.meas.algorithms.subtractBackground.SubtractBackgroundConfig'>)

limit#

Maximum variance scaling value to permit (float, default 10.0)

maskPlanes#

Mask planes for pixels to ignore when scaling variance (List, default ['DETECTED', 'DETECTED_NEGATIVE', 'BAD', 'SAT', 'NO_DATA', 'INTRP'])

Methods Documentation

setDefaults()#

Subclass hook for computing defaults.

Notes#

Derived Config classes that must compute defaults rather than using the Field instances’s defaults should do so here. To correctly use inherited defaults, implementations of setDefaults must call their base class’s setDefaults.