00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkVectorAnisotropicDiffusionFunction.h,v $ 00005 Language: C++ 00006 Date: $Date: 2002/09/11 19:39:03 $ 00007 Version: $Revision: 1.8 $ 00008 00009 Copyright (c) 2002 Insight 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 #ifndef __itkVectorAnisotropicDiffusionFunction_h_ 00018 #define __itkVectorAnisotropicDiffusionFunction_h_ 00019 00020 #include "itkAnisotropicDiffusionFunction.h" 00021 #include "itkVector.h" 00022 00023 namespace itk { 00024 00049 template <class TImage> 00050 class VectorAnisotropicDiffusionFunction : 00051 public AnisotropicDiffusionFunction<TImage> 00052 { 00053 public: 00055 typedef VectorAnisotropicDiffusionFunction Self; 00056 typedef AnisotropicDiffusionFunction<TImage> Superclass; 00057 typedef SmartPointer<Self> Pointer; 00058 typedef SmartPointer<const Self> ConstPointer; 00059 00061 itkTypeMacro(VectorAnisotropicDiffusionFunction, 00062 AnisotropicDiffusionFunction); 00063 00065 typedef typename Superclass::ImageType ImageType; 00066 typedef typename Superclass::PixelType PixelType; 00067 typedef typename Superclass::TimeStepType TimeStepType; 00068 typedef typename Superclass::RadiusType RadiusType; 00069 typedef typename Superclass::NeighborhoodType NeighborhoodType; 00070 typedef typename Superclass::BoundaryNeighborhoodType BoundaryNeighborhoodType; 00071 00073 itkStaticConstMacro(ImageDimension, unsigned int, 00074 Superclass::ImageDimension ); 00075 itkStaticConstMacro(VectorDimension, unsigned int, 00076 PixelType::VectorDimension ); 00077 00079 virtual void CalculateAverageGradientMagnitudeSquared(TImage *); 00080 00081 protected: 00082 VectorAnisotropicDiffusionFunction() {} 00083 ~VectorAnisotropicDiffusionFunction() {} 00084 void PrintSelf(std::ostream& os, Indent indent) const 00085 { Superclass::PrintSelf(os,indent); } 00086 private: 00087 VectorAnisotropicDiffusionFunction(const Self&); //purposely not implemented 00088 void operator=(const Self&); //purposely not implemented 00089 }; 00090 00091 }// end namespace itk 00092 00093 #ifndef ITK_MANUAL_INSTANTIATION 00094 #include "itkVectorAnisotropicDiffusionFunction.txx" 00095 #endif 00096 00097 #endif