Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkIterativeSupervisedTrainingFunction.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkIterativeSupervisedTrainingFunction.h,v $
00005   Language:  C++
00006   Date:      $Date: 2005/08/02 19:17:37 $
00007   Version:   $Revision: 1.1 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 
00018 #ifndef __itkIterativeSupervisedTrainingFunction_h
00019 #define __itkIterativeSupervisedTrainingFunction_h
00020 
00021 #include "itkTrainingFunctionBase.h"
00022 
00023 
00024 namespace itk
00025 {
00026 namespace Statistics
00027 {
00028 
00029 template<class TSample, class TOutput, class ScalarType>
00030 class IterativeSupervisedTrainingFunction : public TrainingFunctionBase<TSample, TOutput, ScalarType>
00031 {
00032 public:
00033 
00034   typedef IterativeSupervisedTrainingFunction Self;
00035   typedef TrainingFunctionBase<TSample, TOutput, ScalarType> Superclass;
00036   typedef SmartPointer<Self> Pointer;
00037   typedef SmartPointer<const Self> ConstPointer;
00038 
00040   itkTypeMacro(IterativeSupervisedTrainingFunction, TrainingFunctionBase);
00041 
00043   itkNewMacro(Self);
00044 
00045   typedef typename Superclass::NetworkType NetworkType;
00046 
00047   void SetNumOfIterations(long i);
00048 
00049   void Train(NetworkType* net, TSample* samples, TOutput* targets);
00050 
00051   itkSetMacro(Threshold, ScalarType);
00052 
00053 protected:
00054 
00055   IterativeSupervisedTrainingFunction();
00056   ~IterativeSupervisedTrainingFunction(){};
00057   
00059   virtual void PrintSelf( std::ostream& os, Indent indent ) const;
00060 
00061   ScalarType m_Threshold;
00062   bool       m_Stop; //stop condition
00063 };
00064 
00065 } // end namespace Statistics
00066 } // end namespace itk
00067 
00068 #ifndef ITK_MANUAL_INSTANTIATION
00069   #include "itkIterativeSupervisedTrainingFunction.txx"
00070 #endif
00071 
00072 #endif

Generated at Wed May 24 23:30:23 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000