#include <stat.hh>
Public Member Functions | |
| StatBase () | |
| template<typename T , class D > | |
| void | VisitState (const ImageStateImpl< T, D > &isi) |
| void | VisitFunction (const Function &f) |
| Real | GetMean () const |
| void | SetMean (Real m) |
| Real | GetMinimum () const |
| Point | GetMinimumPosition () const |
| void | SetMinimum (Real m) |
| Real | GetMaximum () const |
| Point | GetMaximumPosition () const |
| void | SetMaximum (Real m) |
| Real | GetSum () const |
| void | SetSum (Real s) |
| Real | GetVariance () const |
| void | SetVariance (Real v) |
| Real | GetStandardDeviation () const |
| void | SetStandardDeviation (Real s) |
| Real | GetRootMeanSquare () const |
| Real | GetSkewness () const |
| Real | GetKurtosis () const |
| Vec3 | GetCenterOfMass () const |
Static Public Member Functions | |
| static String | GetAlgorithmName () |
Protected Attributes | |
| Real | mean_ |
| Real | var_ |
| Real | std_dev_ |
| Real | sum_ |
| Real | min_ |
| Real | max_ |
| Point | maxpos_ |
| Point | minpos_ |
| Real | rms_ |
| Real | skewness_ |
| Real | kurtosis_ |
| Vec3 | center_of_mass_ |
Since this algorithm is implemented as a combined image stage visitor and algorithm, the main workhorse is this class StatBase, which will act as the parent class of the actual algorithm class, Stat
Definition at line 44 of file stat.hh.
| void VisitFunction | ( | const Function & | f | ) |
| void VisitState | ( | const ImageStateImpl< T, D > & | isi | ) | [inline] |
Vec3 center_of_mass_ [protected] |
1.5.8