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

itkVectorAnisotropicDiffusionFunction.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkVectorAnisotropicDiffusionFunction.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/09/10 14:28:58 $ 00007 Version: $Revision: 1.13 $ 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 #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 ITK_EXPORT 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 00072 itkStaticConstMacro(ImageDimension, unsigned int, 00073 Superclass::ImageDimension ); 00074 itkStaticConstMacro(VectorDimension, unsigned int, PixelType::Dimension ); 00075 00077 virtual void CalculateAverageGradientMagnitudeSquared(TImage *); 00078 00079 protected: 00080 VectorAnisotropicDiffusionFunction() {} 00081 ~VectorAnisotropicDiffusionFunction() {} 00082 void PrintSelf(std::ostream& os, Indent indent) const 00083 { Superclass::PrintSelf(os,indent); } 00084 private: 00085 VectorAnisotropicDiffusionFunction(const Self&); //purposely not implemented 00086 void operator=(const Self&); //purposely not implemented 00087 }; 00088 00089 }// end namespace itk 00090 00091 #ifndef ITK_MANUAL_INSTANTIATION 00092 #include "itkVectorAnisotropicDiffusionFunction.txx" 00093 #endif 00094 00095 #endif

Generated at Sun Apr 1 02:46:10 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000