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

itkScalarAnisotropicDiffusionFunction.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkScalarAnisotropicDiffusionFunction.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:28:55 $
00007   Version:   $Revision: 1.11 $
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:
00044   typedef ScalarAnisotropicDiffusionFunction Self;
00045   typedef AnisotropicDiffusionFunction<TImage> Superclass;
00046   typedef SmartPointer<Self> Pointer;
00047   typedef SmartPointer<const Self> ConstPointer;
00048 
00050   itkStaticConstMacro(ImageDimension, unsigned int,
00051                       Superclass::ImageDimension );
00052 
00054   typedef typename Superclass::ImageType ImageType;
00055   typedef typename Superclass::PixelType PixelType;
00056   typedef typename Superclass::RadiusType RadiusType;
00057   typedef typename Superclass::NeighborhoodType NeighborhoodType;
00058   typedef typename Superclass::TimeStepType TimeStepType;
00059 
00061   itkTypeMacro(ScalarAnisotropicDiffusionFunction,
00062                AnisotropicDiffusionFunction);
00063   
00064   virtual void CalculateAverageGradientMagnitudeSquared(TImage *);
00065 
00066 protected:
00067   ScalarAnisotropicDiffusionFunction() {}
00068   ~ScalarAnisotropicDiffusionFunction() {}
00069   void PrintSelf(std::ostream& os, Indent indent) const
00070   { Superclass::PrintSelf(os,indent); }
00071 private:
00072   ScalarAnisotropicDiffusionFunction(const Self&); //purposely not implemented
00073   void operator=(const Self&); //purposely not implemented
00074 };
00075 
00076 }// end namespace itk
00077 
00078 #ifndef ITK_MANUAL_INSTANTIATION
00079 #include "itkScalarAnisotropicDiffusionFunction.txx"
00080 #endif
00081 
00082 #endif

Generated at Wed May 24 23:59:54 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000