00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkVectorCurvatureNDAnisotropicDiffusionFunction_h_
00018 #define __itkVectorCurvatureNDAnisotropicDiffusionFunction_h_
00019
00020 #include "itkVectorAnisotropicDiffusionFunction.h"
00021 #include "itkNeighborhoodAlgorithm.h"
00022 #include "itkVectorNeighborhoodInnerProduct.h"
00023 #include "itkDerivativeOperator.h"
00024
00025 namespace itk {
00026
00041 template <class TImage>
00042 class ITK_EXPORT VectorCurvatureNDAnisotropicDiffusionFunction :
00043 public VectorAnisotropicDiffusionFunction<TImage>
00044 {
00045 public:
00047 typedef VectorCurvatureNDAnisotropicDiffusionFunction Self;
00048 typedef VectorAnisotropicDiffusionFunction<TImage> Superclass;
00049 typedef SmartPointer<Self> Pointer;
00050 typedef SmartPointer<const Self> ConstPointer;
00051
00053 itkNewMacro(Self);
00054
00056 itkTypeMacro( VectorCurvatureNDAnisotropicDiffusionFunction,
00057 VectorAnisotropicDiffusionFunction );
00058
00060 typedef typename Superclass::ImageType ImageType;
00061 typedef typename Superclass::PixelType PixelType;
00062 typedef typename Superclass::TimeStepType TimeStepType;
00063 typedef typename Superclass::RadiusType RadiusType;
00064 typedef typename Superclass::NeighborhoodType NeighborhoodType;
00065 typedef typename Superclass::FloatOffsetType FloatOffsetType;
00066 typedef typename PixelType::ValueType ScalarValueType;
00067
00069 itkStaticConstMacro(ImageDimension, unsigned int,
00070 Superclass::ImageDimension);
00071 itkStaticConstMacro(VectorDimension, unsigned int,
00072 Superclass::VectorDimension);
00073
00075 virtual PixelType ComputeUpdate(const NeighborhoodType &neighborhood,
00076 void *globalData,
00077 const FloatOffsetType& offset = FloatOffsetType(0.0)
00078 );
00079
00081 virtual void InitializeIteration()
00082 {
00083 m_K = this->GetAverageGradientMagnitudeSquared() * this->GetConductanceParameter() *
00084 this->GetConductanceParameter() * -2.0f;
00085 }
00086
00087 protected:
00088 VectorCurvatureNDAnisotropicDiffusionFunction();
00089 ~VectorCurvatureNDAnisotropicDiffusionFunction() {}
00090 void PrintSelf(std::ostream& os, Indent indent) const
00091 { Superclass::PrintSelf(os,indent); }
00092
00093 private:
00094 VectorCurvatureNDAnisotropicDiffusionFunction(const Self&);
00095 void operator=(const Self&);
00096
00098 VectorNeighborhoodInnerProduct<ImageType> m_InnerProduct;
00099
00101 std::slice x_slice[ImageDimension];
00102 std::slice xa_slice[ImageDimension][ImageDimension];
00103 std::slice xd_slice[ImageDimension][ImageDimension];
00104
00106 DerivativeOperator<ScalarValueType, itkGetStaticConstMacro(ImageDimension)> dx_op;
00107
00109 double m_K;
00110
00111 static double m_MIN_NORM;
00112 unsigned long m_Center;
00113 unsigned long m_Stride[ImageDimension];
00114 };
00115
00116 }
00117
00118 #ifndef ITK_MANUAL_INSTANTIATION
00119 #include "itkVectorCurvatureNDAnisotropicDiffusionFunction.txx"
00120 #endif
00121
00122 #endif