lsst.pipe.tasks  13.0-60-g3ba4059d+4
 All Classes Namespaces Files Functions Variables Groups Pages
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
lsst.pipe.tasks.interpImage.InterpImageConfig Class Reference
Inheritance diagram for lsst.pipe.tasks.interpImage.InterpImageConfig:

Public Member Functions

def validate
 

Public Attributes

 fallbackValueType
 

Static Public Attributes

tuple modelPsf = measAlg.GaussianPsfFactory.makeField(doc="Model Psf factory")
 
tuple useFallbackValueAtEdge
 
tuple fallbackValueType
 
tuple fallbackUserValue
 
tuple negativeFallbackAllowed
 

Detailed Description

Config for InterpImageTask

Definition at line 32 of file interpImage.py.

Member Function Documentation

def lsst.pipe.tasks.interpImage.InterpImageConfig.validate (   self)

Definition at line 65 of file interpImage.py.

Member Data Documentation

tuple lsst.pipe.tasks.interpImage.InterpImageConfig.fallbackUserValue
static
Initial value:
1 = pexConfig.Field(
2  dtype=float,
3  doc="If fallbackValueType is 'USER' then use this as the fallbackValue; ignored otherwise",
4  default=0.0,
5  )

Definition at line 53 of file interpImage.py.

tuple lsst.pipe.tasks.interpImage.InterpImageConfig.fallbackValueType
static
Initial value:
1 = pexConfig.ChoiceField(
2  dtype=str,
3  doc="Type of statistic to calculate edge fallbackValue for interpolation",
4  allowed={
5  "MEAN": "mean",
6  "MEDIAN": "median",
7  "MEANCLIP": "clipped mean",
8  "USER": "user value set in fallbackUserValue config",
9  },
10  default="MEDIAN",
11  )

Definition at line 42 of file interpImage.py.

lsst.pipe.tasks.interpImage.InterpImageConfig.fallbackValueType

Definition at line 68 of file interpImage.py.

tuple lsst.pipe.tasks.interpImage.InterpImageConfig.modelPsf = measAlg.GaussianPsfFactory.makeField(doc="Model Psf factory")
static

Definition at line 35 of file interpImage.py.

tuple lsst.pipe.tasks.interpImage.InterpImageConfig.negativeFallbackAllowed
static
Initial value:
1 = pexConfig.Field(
2  dtype=bool,
3  doc=("Allow negative values for egde interpolation fallbackValue? If False, set "
4  "fallbackValue to max(fallbackValue, 0.0)"),
5  default=False,
6  )

Definition at line 58 of file interpImage.py.

tuple lsst.pipe.tasks.interpImage.InterpImageConfig.useFallbackValueAtEdge
static
Initial value:
1 = pexConfig.Field(
2  dtype=bool,
3  doc="Smoothly taper to the fallback value at the edge of the image?",
4  default=True,
5  )

Definition at line 37 of file interpImage.py.


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