00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef _itkGaussianKernelFunction_h
00018 #define _itkGaussianKernelFunction_h
00019
00020 #include "itkKernelFunction.h"
00021 #include "vnl/vnl_math.h"
00022 #include <math.h>
00023
00024 namespace itk
00025 {
00026
00039 class ITKCommon_EXPORT GaussianKernelFunction : public KernelFunction
00040 {
00041 public:
00043 typedef GaussianKernelFunction Self;
00044 typedef KernelFunction Superclass;
00045 typedef SmartPointer<Self> Pointer;
00046
00048 itkNewMacro(Self);
00049
00051 itkTypeMacro(GaussianKernelFunction, KernelFunction);
00052
00054 inline double Evaluate (const double& u) const
00055 { return ( exp( -0.5 * vnl_math_sqr( u ) ) * m_Factor ); }
00056
00057 protected:
00058 GaussianKernelFunction();
00059 ~GaussianKernelFunction();
00060 void PrintSelf(std::ostream& os, Indent indent) const
00061 { Superclass::PrintSelf( os, indent ); }
00062
00063 private:
00064 GaussianKernelFunction(const Self&);
00065 void operator=(const Self&);
00066
00067 static const double m_Factor;
00068
00069 };
00070
00071 }
00072
00073 #endif