00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkErrorFunctionBase.h,v $ 00005 Language: C++ 00006 Date: $Date: 2006/04/17 19:34:45 $ 00007 Version: $Revision: 1.2 $ 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 _itkErrorFunctionBase_h 00019 #define _itkErrorFunctionBase_h 00020 00021 #include "itkFunctionBase.h" 00022 00023 namespace itk 00024 { 00025 namespace Statistics 00026 { 00027 00028 template<class TVector, class TOutput> 00029 class ErrorFunctionBase : public FunctionBase<TVector, TOutput> 00030 { 00031 public: 00033 typedef ErrorFunctionBase Self; 00034 typedef FunctionBase<TVector, TOutput> Superclass; 00035 typedef SmartPointer<Self> Pointer; 00036 typedef SmartPointer<const Self> ConstPointer; 00037 00039 itkTypeMacro(ErrorFunctionBase, FunctionBase); 00040 00042 typedef TVector ErrorVectorType; 00043 00045 typedef TOutput OutputType; 00046 00047 typedef Array<double> InternalVectorType; 00048 00049 virtual OutputType Evaluate(const ErrorVectorType&) const = 0; 00050 00051 //virtual ErrorVectorType EvaluateDerivative(const ErrorVectorType&) const = 0; 00052 virtual InternalVectorType EvaluateDerivative(const ErrorVectorType&) const = 0; 00053 00054 protected: 00055 00056 ErrorFunctionBase(){}; 00057 virtual ~ErrorFunctionBase(){}; 00058 00059 private: 00060 00061 ErrorFunctionBase(const Self&); //purposely not implemented 00062 void operator=(const Self&); //purposely not implemented 00063 }; 00064 00065 } // end namespace itk 00066 } // end namespace Statistics 00067 #endif 00068