00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkScalarAnisotropicDiffusionFunction.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-10-17 20:49:55 $ 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 __itkScalarAnisotropicDiffusionFunction_h 00018 #define __itkScalarAnisotropicDiffusionFunction_h 00019 00020 00021 #include "itkAnisotropicDiffusionFunction.h" 00022 00023 namespace itk { 00024 00038 template <class TImage> 00039 class ITK_EXPORT ScalarAnisotropicDiffusionFunction : 00040 public AnisotropicDiffusionFunction<TImage> 00041 { 00042 public: 00043 00045 typedef ScalarAnisotropicDiffusionFunction Self; 00046 typedef AnisotropicDiffusionFunction<TImage> Superclass; 00047 typedef SmartPointer<Self> Pointer; 00048 typedef SmartPointer<const Self> ConstPointer; 00049 00051 itkStaticConstMacro(ImageDimension, unsigned int, 00052 Superclass::ImageDimension ); 00053 00055 typedef typename Superclass::ImageType ImageType; 00056 typedef typename Superclass::PixelType PixelType; 00057 typedef typename Superclass::PixelRealType PixelRealType; 00058 typedef typename Superclass::RadiusType RadiusType; 00059 typedef typename Superclass::NeighborhoodType NeighborhoodType; 00060 typedef typename Superclass::TimeStepType TimeStepType; 00061 00063 itkTypeMacro(ScalarAnisotropicDiffusionFunction, 00064 AnisotropicDiffusionFunction); 00065 00066 virtual void CalculateAverageGradientMagnitudeSquared(TImage *); 00067 00068 protected: 00069 ScalarAnisotropicDiffusionFunction() {} 00070 ~ScalarAnisotropicDiffusionFunction() {} 00071 00072 private: 00073 ScalarAnisotropicDiffusionFunction(const Self&); //purposely not implemented 00074 void operator=(const Self&); //purposely not implemented 00075 }; 00076 00077 }// end namespace itk 00078 00079 #ifndef ITK_MANUAL_INSTANTIATION 00080 #include "itkScalarAnisotropicDiffusionFunction.txx" 00081 #endif 00082 00083 #endif 00084