Enum Property¶
Enum Documentation¶
- 
enum 
lsst::afw::math::Property¶ control what is calculated
Values:
- 
NOTHING= 0x0¶ We don’t want anything.
- 
ERRORS= 0x1¶ Include errors of requested quantities.
- 
NPOINT= 0x2¶ number of sample points
- 
MEAN= 0x4¶ estimate sample mean
- 
STDEV= 0x8¶ estimate sample standard deviation
- 
VARIANCE= 0x10¶ estimate sample variance
- 
MEDIAN= 0x20¶ estimate sample median
- 
IQRANGE= 0x40¶ estimate sample inter-quartile range
- 
MEANCLIP= 0x80¶ estimate sample N-sigma clipped mean (N set in StatisticsControl, default=3)
- 
STDEVCLIP= 0x100¶ estimate sample N-sigma clipped stdev (N set in StatisticsControl, default=3)
- 
VARIANCECLIP= 0x200¶ estimate sample N-sigma clipped variance (N set in StatisticsControl, default=3)
- 
MIN= 0x400¶ estimate sample minimum
- 
MAX= 0x800¶ estimate sample maximum
- 
SUM= 0x1000¶ find sum of pixels in the image
- 
MEANSQUARE= 0x2000¶ find mean value of square of pixel values
- 
ORMASK= 0x4000¶ get the or-mask of all pixels used.
- 
NCLIPPED= 0x8000¶ number of clipped points
- 
NMASKED= 0x10000¶ number of masked points
-