LSSTApplications  10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
Classes | Namespaces | Typedefs | Enumerations | Functions
Statistics.h File Reference

Compute Image Statistics. More...

#include <algorithm>
#include <cassert>
#include <limits>
#include "boost/iterator/iterator_adaptor.hpp"
#include "boost/tuple/tuple.hpp"
#include "boost/shared_ptr.hpp"
#include "lsst/afw/image/MaskedImage.h"
#include "lsst/afw/math/MaskedVector.h"

Go to the source code of this file.

Classes

class  lsst.afw.image::Image< T >
 A class to represent a 2-dimensional array of pixels. More...
 
class  lsst.afw.image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >
 A class to manipulate images, masks, and variance as a single object. More...
 
class  lsst.afw.math::MaskedVector< EntryT >
 
class  lsst.afw.math::StatisticsControl
 Pass parameters to a Statistics objectA class to pass parameters which control how the stats are calculated. More...
 
class  lsst.afw.math::Statistics
 
class  lsst.afw.math::infinite_iterator< ValueT >
 This iterator will never increment. It is returned by row_begin() in the MaskImposter class (below) to allow phony mask pixels to be iterated over for non-mask images within Statistics. More...
 
class  lsst.afw.math::MaskImposter< ValueT >
 A Mask wrapper to provide an infinite_iterator for Mask::row_begin(). This allows a fake Mask to be passed in to Statistics with a regular (non-masked) Image. More...
 
class  lsst.afw.math::ImageImposter< ValueT >
 A vector wrapper to provide a vector with the necessary methods and typedefs to be processed by Statistics as though it were an Image. More...
 

Namespaces

 lsst
 < multiple inclusion guard macro
 
 lsst.afw
 
 lsst.afw.image
 
 lsst.afw.math
 

Typedefs

typedef
lsst::afw::image::VariancePixel 
lsst.afw.math::WeightPixel
 

Enumerations

enum  lsst.afw.math::Property {
  lsst.afw.math::NOTHING = 0x0, lsst.afw.math::ERRORS = 0x1, lsst.afw.math::NPOINT = 0x2, lsst.afw.math::MEAN = 0x4,
  lsst.afw.math::STDEV = 0x8, lsst.afw.math::VARIANCE = 0x10, lsst.afw.math::MEDIAN = 0x20, lsst.afw.math::IQRANGE = 0x40,
  lsst.afw.math::MEANCLIP = 0x80, lsst.afw.math::STDEVCLIP = 0x100, lsst.afw.math::VARIANCECLIP = 0x200, lsst.afw.math::MIN = 0x400,
  lsst.afw.math::MAX = 0x800, lsst.afw.math::SUM = 0x1000, lsst.afw.math::MEANSQUARE = 0x2000, lsst.afw.math::ORMASK = 0x4000
}
 control what is calculated More...
 

Functions

Property lsst.afw.math::stringToStatisticsProperty (std::string const property)
 Conversion function to switch a string to a Property (see Statistics.h) More...
 

Detailed Description

Compute Image Statistics.

Author
Steve Bickerton
Note
The Statistics class itself can only handle lsst::afw::image::MaskedImage() types. The philosophy has been to handle other types by making them look like lsst::afw::image::MaskedImage() and reusing that code. Users should have no need to instantiate a Statistics object directly, but should use the overloaded makeStatistics() factory functions.

Definition in file Statistics.h.