Definition at line 63 of file warper.py.
◆ cacheSize
lsst.afw.math.warper.WarperConfig.cacheSize |
|
static |
Initial value:= pexConfig.Field(
dtype=int,
doc="``cacheSize`` argument to `lsst.afw.math.SeparableKernel.computeCache`",
default=_DefaultCacheSize,
)
Definition at line 92 of file warper.py.
◆ growFullMask
lsst.afw.math.warper.WarperConfig.growFullMask |
|
static |
Initial value:= pexConfig.Field(
dtype=int,
doc="mask bits to grow to full width of image/variance kernel,",
default=afwImage.Mask.getPlaneBitMask("EDGE"),
)
Definition at line 97 of file warper.py.
◆ interpLength
lsst.afw.math.warper.WarperConfig.interpLength |
|
static |
Initial value:= pexConfig.Field(
dtype=int,
doc="``interpLength`` argument to `lsst.afw.math.warpExposure`",
default=_DefaultInterpLength,
)
Definition at line 87 of file warper.py.
◆ maskWarpingKernelName
lsst.afw.math.warper.WarperConfig.maskWarpingKernelName |
|
static |
Initial value:= pexConfig.ChoiceField(
dtype=str,
doc="Warping kernel for mask (use ``warpingKernelName`` if '')",
default="bilinear",
allowed={
"": "use the regular warping kernel for the mask plane, as well as the image and variance planes",
"bilinear": "bilinear interpolation",
"lanczos3": "Lanczos kernel of order 3",
"lanczos4": "Lanczos kernel of order 4",
"lanczos5": "Lanczos kernel of order 5",
}
)
Definition at line 75 of file warper.py.
◆ warpingKernelName
lsst.afw.math.warper.WarperConfig.warpingKernelName |
|
static |
Initial value:= pexConfig.ChoiceField(
dtype=str,
doc="Warping kernel",
default="lanczos3",
allowed={
"bilinear": "bilinear interpolation",
"lanczos3": "Lanczos kernel of order 3",
"lanczos4": "Lanczos kernel of order 4",
"lanczos5": "Lanczos kernel of order 5",
}
)
Definition at line 64 of file warper.py.
The documentation for this class was generated from the following file: