Definition at line 65 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 94 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 99 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 89 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 77 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 66 of file _warper.py.
The documentation for this class was generated from the following file: