std::complex< double > * m_stdVal
The standard deviation of the occurring values (real and imaginary), default is 1.0. 
 
~BandSummary()
Destructor. 
 
BandSummary()
Constructor. 
 
std::complex< double > * m_minVal
The minimum occurring values (real and imaginary), default is std::numeric_limits<double>::min(). 
 
BandSummary & operator=(const BandSummary &rhs)
Assignment operator. 
 
A summary of a raster band (most statistics). 
 
std::map< double, unsigned int > * m_histogramR
The histogram (a map of occurring values and frequency) of the real part of a band. 
 
A struct that can be used to keep the summary of a raster band (most statistics). ...
 
std::complex< double > * m_meanVal
The mean of the occurring values (real and imaginary), default is 0.0. 
 
std::complex< double > * m_maxVal
The maximum occurring values (real and imaginary), default is std::numeric_limits<double>::max(). 
 
void clear()
Clears all attributes from this class. 
 
std::map< double, unsigned int > * m_histogramI
The histogram (a map of occurring values and frequency) of the imaginary part of a band...