|
Field | xSize = Field(dtype=float, doc="Bin size in x") |
|
Field | ySize = Field(dtype=float, doc="Bin size in y") |
|
Field | pixelSize = Field(dtype=float, default=1.0, doc="Pixel size in same units as xSize/ySize") |
|
Field | minFrac = Field(dtype=float, default=0.1, doc="Minimum fraction of bin size for good measurement") |
|
ListField | mask |
|
ChoiceField | interpolation |
|
Field | doSmooth = Field(dtype=bool, default=False, doc="Do smoothing?") |
|
Field | smoothScale = Field(dtype=float, default=2.0, doc="Smoothing scale, as a multiple of the bin size") |
|
Field | binning = Field(dtype=int, default=64, doc="Binning to use for CCD background model (pixels)") |
|
Configuration for FocalPlaneBackground
Note that `xSize` and `ySize` are floating-point values, as
the focal plane frame is usually defined in units of microns
or millimetres rather than pixels. As such, their values will
need to be revised according to each particular camera. For
this reason, no defaults are set for those.
Definition at line 467 of file background.py.