LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Static Public Attributes | List of all members
lsst.afw.math.warper.WarperConfig Class Reference
Inheritance diagram for lsst.afw.math.warper.WarperConfig:

Static Public Attributes

tuple warpingKernelName
 
tuple maskWarpingKernelName
 
tuple interpLength
 
tuple cacheSize
 
tuple devicePreference
 
tuple growFullMask
 

Detailed Description

Definition at line 53 of file warper.py.

Member Data Documentation

tuple lsst.afw.math.warper.WarperConfig.cacheSize
static
Initial value:
1 = pexConfig.Field(
2  dtype = int,
3  doc = "cacheSize argument to lsst.afw.math.SeparableKernel.computeCache",
4  default = _DefaultCacheSize,
5  )

Definition at line 82 of file warper.py.

tuple lsst.afw.math.warper.WarperConfig.devicePreference
static
Initial value:
1 = pexConfig.Field(
2  dtype = int,
3  doc = "use GPU acceleration?",
4  default = afwGpu.DEFAULT_DEVICE_PREFERENCE,
5  )

Definition at line 87 of file warper.py.

tuple lsst.afw.math.warper.WarperConfig.growFullMask
static
Initial value:
1 = pexConfig.Field(
2  dtype = int,
3  doc = "mask bits to grow to full width of image/variance kernel,",
4  default = afwImage.MaskU.getPlaneBitMask("EDGE"),
5  )

Definition at line 92 of file warper.py.

tuple lsst.afw.math.warper.WarperConfig.interpLength
static
Initial value:
1 = pexConfig.Field(
2  dtype = int,
3  doc = "interpLength argument to lsst.afw.math.warpExposure",
4  default = _DefaultInterpLength,
5  )

Definition at line 77 of file warper.py.

tuple lsst.afw.math.warper.WarperConfig.maskWarpingKernelName
static
Initial value:
1 = pexConfig.ChoiceField(
2  dtype = str,
3  doc = "Warping kernel for mask (use warpingKernelName if '')",
4  default = "bilinear",
5  allowed = {
6  "": "use the regular warping kernel for the mask plane, as well as the image and variance planes",
7  "bilinear": "bilinear interpolation",
8  "lanczos3": "Lanczos kernel of order 3",
9  "lanczos4": "Lanczos kernel of order 4",
10  "lanczos5": "Lanczos kernel of order 5",
11  }
12  )

Definition at line 65 of file warper.py.

tuple lsst.afw.math.warper.WarperConfig.warpingKernelName
static
Initial value:
1 = pexConfig.ChoiceField(
2  dtype = str,
3  doc = "Warping kernel",
4  default = "lanczos4",
5  allowed = {
6  "bilinear": "bilinear interpolation",
7  "lanczos3": "Lanczos kernel of order 3",
8  "lanczos4": "Lanczos kernel of order 4",
9  "lanczos5": "Lanczos kernel of order 5",
10  }
11  )

Definition at line 54 of file warper.py.


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