Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef __cmtkAccumulatorMax_h_included_
00033 #define __cmtkAccumulatorMax_h_included_
00034
00035 #include <cmtkconfig.h>
00036
00037 namespace
00038 cmtk
00039 {
00040
00043 namespace
00044 Accumulators
00045 {
00047 template<class TDataType>
00048 class Max
00049 {
00050 public:
00052 Max()
00053 {
00054 this->m_Maximum = 0;
00055 this->m_Valid = false;
00056 }
00057
00059 void Reset()
00060 {
00061 this->m_Valid = false;
00062 }
00063
00065 void AddValue( const TDataType& value )
00066 {
00067 if ( !this->m_Valid || value > this->m_Maximum )
00068 {
00069 this->m_Maximum = value;
00070 this->m_Valid = true;
00071 }
00072 }
00073
00075 const TDataType GetResult() const
00076 {
00077 return this->m_Maximum;
00078 }
00079
00080 private:
00082 bool m_Valid;
00083
00085 TDataType m_Maximum;
00086 };
00087 }
00088 }
00089
00090 #endif // #ifdef __cmtkAccumulatorMax_h_included_