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

itkRadialBasisFunctionBase.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkRadialBasisFunctionBase.h,v $
00005   Language:  C++
00006   Date:      $Date: 2007/08/17 13:10:57 $
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 _itkRadialBasisFunctionBase_h
00019 #define _itkRadialBasisFunctionBase_h
00020 
00021 #include "itkFunctionBase.h"
00022 #include "itkArray.h"
00023 
00024 namespace itk
00025 {
00026 namespace Statistics
00027 {
00028 
00029 template<class ScalarType>
00030 class RadialBasisFunctionBase : public FunctionBase<ScalarType,ScalarType>
00031 {
00032 public:
00033 
00035   typedef RadialBasisFunctionBase Self;
00036   typedef FunctionBase<ScalarType,ScalarType> Superclass;
00037   typedef SmartPointer<Self> Pointer;
00038   typedef SmartPointer<const Self> ConstPointer;
00039 
00041   itkTypeMacro(RadialBasisFunctionBase, FunctionBase);
00042 
00044   typedef Array<ScalarType> ArrayType;
00045 
00047   virtual ScalarType Evaluate(const ScalarType& input) const=0;
00048 
00050   virtual ScalarType EvaluateDerivative(const ScalarType& dist, const ArrayType& input,
00051                                                     char mode,int element_id=0) const=0;
00052 
00053   itkSetMacro(Radius,ScalarType);
00054   itkGetConstMacro( Radius, ScalarType );
00055 
00056   itkSetMacro(Center,ArrayType);
00057   itkGetConstMacro(Center, ArrayType );
00058 
00059 protected:
00060 
00061   RadialBasisFunctionBase()
00062     {
00063     m_Radius = 0;
00064     }
00065   ~RadialBasisFunctionBase() {};
00066 
00068   virtual void PrintSelf( std::ostream& os, Indent indent ) const
00069     {
00070     os << indent << "RadialBasisFunctionBase(" << this << ")" << std::endl;
00071     Superclass::PrintSelf( os, indent );
00072     }
00074 
00075 private:
00076 
00077   ArrayType  m_Center;
00078   ScalarType m_Radius;
00079 
00080   RadialBasisFunctionBase(const Self&); //purposely not implemented
00081   void operator=(const Self&); //purposely not implemented
00082 };
00083 
00084 } // end namespace Statistics
00085 } // end namespace itk
00086 
00087 #endif
00088 

Generated at Wed Nov 5 23:47:06 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000