1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Copyright (c) Institut Telecom; Telecom bretagne. All rights reserved.
See IMTCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbSOMLearningBehaviorFunctor_h
#define otbSOMLearningBehaviorFunctor_h
namespace otb
{
namespace Functor
{
/** \class SOMLearningBehaviorFunctor
* \brief Classical Beta behavior over SOM training phase
*
* This class implements an standard evolution of the \f$ \beta \f$ weightening
* coefficient over the SOM training.
*
* \f[
\beta = \beta_0 + \left( \beta_{\textrm{end}} - \beta_0 \right)
\frac{t}{t_{\textrm{end}}}
\f]
*
* \sa SOM
*
* \ingroup OTBSOM
*/
class SOMLearningBehaviorFunctor
{
public:
/** Empty constructor / descructor */
SOMLearningBehaviorFunctor () {}
virtual ~SOMLearningBehaviorFunctor() {}
/** Functor */
virtual double operator ()(unsigned int currentIteration,
unsigned int numberOfIterations,
double betaInit, double betaEnd) const
{
return betaInit + (betaEnd - betaInit)
* static_cast<double>(currentIteration)
/ static_cast<double>(numberOfIterations);
}
}; // end of class SOMLearningBehaviorFunctor
} // end namespace Functor
} // end namespace otb
#endif
|