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

itkCurvatureFlowImageFilter.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkCurvatureFlowImageFilter.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/10/07 16:42:27 $ 00007 Version: $Revision: 1.34 $ 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 __itkCurvatureFlowImageFilter_h_ 00018 #define __itkCurvatureFlowImageFilter_h_ 00019 00020 #include "itkDenseFiniteDifferenceImageFilter.h" 00021 #include "itkCurvatureFlowFunction.h" 00022 00023 namespace itk { 00024 00087 template <class TInputImage, class TOutputImage> 00088 class ITK_EXPORT CurvatureFlowImageFilter 00089 : public DenseFiniteDifferenceImageFilter<TInputImage, TOutputImage> 00090 { 00091 public: 00093 typedef CurvatureFlowImageFilter Self; 00094 typedef DenseFiniteDifferenceImageFilter<TInputImage, TOutputImage> 00095 Superclass; 00096 typedef SmartPointer<Self> Pointer; 00097 typedef SmartPointer<const Self> ConstPointer; 00098 00100 itkNewMacro(Self); 00101 00103 itkTypeMacro(CurvatureFlowImageFilter, 00104 DenseFiniteDifferenceImageFilter); 00105 00107 typedef typename Superclass::InputImageType InputImageType; 00108 00110 typedef typename Superclass::OutputImageType OutputImageType; 00111 typedef typename OutputImageType::Pointer OutputImagePointer; 00112 00114 typedef typename Superclass::FiniteDifferenceFunctionType 00115 FiniteDifferenceFunctionType; 00116 00118 typedef CurvatureFlowFunction<OutputImageType> 00119 CurvatureFlowFunctionType; 00120 00123 itkStaticConstMacro(ImageDimension, unsigned int,Superclass::ImageDimension); 00124 00127 typedef typename Superclass::PixelType PixelType; 00128 00130 typedef typename Superclass::TimeStepType TimeStepType; 00131 00133 itkSetMacro(TimeStep, TimeStepType); 00134 00136 itkGetMacro(TimeStep, TimeStepType); 00137 00138 protected: 00139 CurvatureFlowImageFilter(); 00140 ~CurvatureFlowImageFilter() {} 00141 void PrintSelf(std::ostream& os, Indent indent) const; 00142 00145 virtual bool Halt() 00146 { 00147 if (this->GetElapsedIterations() == this->GetNumberOfIterations()) return true; 00148 else return false; 00149 } 00150 00153 virtual void InitializeIteration(); 00154 00158 virtual void EnlargeOutputRequestedRegion(DataObject *); 00159 00163 virtual void GenerateInputRequestedRegion(); 00164 00165 private: 00166 CurvatureFlowImageFilter(const Self&); //purposely not implemented 00167 void operator=(const Self&); //purposely not implemented 00168 00169 TimeStepType m_TimeStep; 00170 00171 }; 00172 00173 } // end namspace itk 00174 00175 #ifndef ITK_MANUAL_INSTANTIATION 00176 #include "itkCurvatureFlowImageFilter.txx" 00177 #endif 00178 00179 #endif

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