Collection of objects in multiple bands for a single parent footprint
Definition at line 48 of file baseline.py.
def lsst.meas.deblender.baseline.DeblenderResult.__init__ |
( |
|
self, |
|
|
|
footprints, |
|
|
|
maskedImages, |
|
|
|
psfs, |
|
|
|
psffwhms, |
|
|
|
log, |
|
|
|
filters = None , |
|
|
|
maxNumberOfPeaks = 0 , |
|
|
|
avgNoise = None |
|
) |
| |
Initialize a DeblededParent
Parameters
----------
footprint: list of `afw.detection.Footprint`s
Parent footprint to deblend in each band.
maskedImages: list of `afw.image.MaskedImageF`s
Masked image containing the ``footprint`` in each band.
psf: list of `afw.detection.Psf`s
Psf of the ``maskedImage`` for each band.
psffwhm: list of `float`s
FWHM of the ``maskedImage``'s ``psf`` in each band.
filters: list of `string`, optional
Names of the filters. This should be the same length as the other lists
maxNumberOfPeaks: `int`, optional
If positive, the maximum number of peaks to deblend.
If the total number of peaks is greater than ``maxNumberOfPeaks``,
then only the first ``maxNumberOfPeaks`` sources are deblended.
The default is 0, which deblends all of the peaks.
avgNoise: `float`or list of `float`s, optional
Average noise level in each ``maskedImage``.
The default is ``None``, which estimates the noise from the median value of the
variance plane of ``maskedImage`` for each filter.
Returns
-------
None
Definition at line 53 of file baseline.py.
def lsst.meas.deblender.baseline.DeblenderResult.getParentProperty |
( |
|
self, |
|
|
|
propertyName |
|
) |
| |
Get the footprint in each filter
Definition at line 142 of file baseline.py.
def lsst.meas.deblender.baseline.DeblenderResult.setTemplateSums |
( |
|
self, |
|
|
|
templateSums, |
|
|
|
fidx = None |
|
) |
| |
lsst.meas.deblender.baseline.DeblenderResult.deblendedParents |
lsst.meas.deblender.baseline.DeblenderResult.filterCount |
lsst.meas.deblender.baseline.DeblenderResult.filters |
lsst.meas.deblender.baseline.DeblenderResult.log |
lsst.meas.deblender.baseline.DeblenderResult.peakCount |
lsst.meas.deblender.baseline.DeblenderResult.peaks |
The documentation for this class was generated from the following file: