LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
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< PixelT >
 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
 Estimate image backgrounds.
 
 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.