interpolateFromMask¶
- lsst.ip.isr.interpolateFromMask(maskedImage, fwhm, growSaturatedFootprints=1, maskNameList=['SAT'], fallbackValue=None)¶
Interpolate over defects identified by a particular set of mask planes.
- Parameters:
- maskedImage
lsst.afw.image.MaskedImage
Image to process.
- fwhm
float
FWHM of double Gaussian smoothing kernel.
- growSaturatedFootprintsscalar, optional
Number of pixels to grow footprints for saturated pixels.
- maskNameList
List
ofstr
, optional Mask plane name.
- fallbackValuescalar, optional
Value of last resort for interpolation.
- maskedImage
Notes
The
fwhm
parameter is used to create a PSF, but the underlying interpolation code (lsst.meas.algorithms.interpolateOverDefects
) does not currently make use of this information.