QuickFrameMeasurementTaskConfig#
- class lsst.pipe.tasks.quickFrameMeasurement.QuickFrameMeasurementTaskConfig(*args, **kw)#
Bases:
ConfigConfig class for the QuickFrameMeasurementTask.
Attributes Summary
The image's percentile value which the centroid must be greater than to pass the final peak check.
Check that the centroid found is actually in the centroidPixelPercentile percentile of the image? Set to False for donut images.
Apply the extendeness cut, as definted by maxExtendedness (
bool, defaultFalse)The expected diameter of donuts in a donut image, in pixels.
Guess at the initial PSF FWHM in pixels.
Task for installing an initial PSF (
ConfigurableInstance, default<class 'lsst.meas.algorithms.installGaussianPsf.InstallGaussianPsfConfig'>)Max absolute value of xx and yy above which to cut, in order to exclude large/things (
float, default100)Ratio of xx to yy (or vice versa) above which to cut, in order to exclude spectra (
float, default5.0)Minimum number of pixels in a detected source.
Number of sigma for the detection limit.
Methods Summary
Subclass hook for computing defaults.
Attributes Documentation
- centroidPixelPercentile#
The image’s percentile value which the centroid must be greater than to pass the final peak check. Ignored if doCheckCentroidPixelValue is False (
float, default90)
- doCheckCentroidPixelValue#
Check that the centroid found is actually in the centroidPixelPercentile percentile of the image? Set to False for donut images. (
bool, defaultTrue)
- doExtendednessCut#
Apply the extendeness cut, as definted by maxExtendedness (
bool, defaultFalse)
- donutDiameter#
The expected diameter of donuts in a donut image, in pixels. (
int, default400)
- initialPsfWidth#
Guess at the initial PSF FWHM in pixels. (
float, default10)
- installPsf#
Task for installing an initial PSF (
ConfigurableInstance, default<class 'lsst.meas.algorithms.installGaussianPsf.InstallGaussianPsfConfig'>)
- maxExtendedness#
Max absolute value of xx and yy above which to cut, in order to exclude large/things (
float, default100)
- maxNonRoundness#
Ratio of xx to yy (or vice versa) above which to cut, in order to exclude spectra (
float, default5.0)
- nPixMinDetection#
Minimum number of pixels in a detected source. (
int, default10)
- nSigmaDetection#
Number of sigma for the detection limit. (
float, default20)
Methods Documentation