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

itkBinaryMinMaxCurvatureFlowImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkBinaryMinMaxCurvatureFlowImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-20 21:28:20 $
00007   Version:   $Revision: 1.10 $
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 __itkBinaryMinMaxCurvatureFlowImageFilter_h
00018 #define __itkBinaryMinMaxCurvatureFlowImageFilter_h
00019 
00020 #include "itkMinMaxCurvatureFlowImageFilter.h"
00021 #include "itkBinaryMinMaxCurvatureFlowFunction.h"
00022 
00023 namespace itk {
00024 
00073 template <class TInputImage, class TOutputImage>
00074 class ITK_EXPORT BinaryMinMaxCurvatureFlowImageFilter
00075   : public MinMaxCurvatureFlowImageFilter<TInputImage, TOutputImage>
00076 {
00077 public:
00079   typedef BinaryMinMaxCurvatureFlowImageFilter Self;
00080   typedef MinMaxCurvatureFlowImageFilter<TInputImage, TOutputImage>
00081                                                Superclass;
00082   typedef SmartPointer<Self>                   Pointer;
00083   typedef SmartPointer<const Self>             ConstPointer;
00084 
00086   itkNewMacro(Self);
00087 
00089   itkTypeMacro(BinaryMinMaxCurvatureFlowImageFilter,
00090                MinMaxCurvatureFlowImageFilter);
00091 
00093   typedef typename Superclass::FiniteDifferenceFunctionType
00094                                                FiniteDifferenceFunctionType;
00095   typedef typename Superclass::OutputImageType OutputImageType;
00096 
00098   typedef BinaryMinMaxCurvatureFlowFunction<OutputImageType>
00099                                          BinaryMinMaxCurvatureFlowFunctionType;
00100 
00103   itkStaticConstMacro(ImageDimension, unsigned int,Superclass::ImageDimension);
00104 
00106   itkSetMacro( Threshold, double );
00107   itkGetMacro( Threshold, double );
00109 
00110 #ifdef ITK_USE_CONCEPT_CHECKING
00111 
00112   itkConceptMacro(InputConvertibleToOutputCheck,
00113                   (Concept::Convertible<typename TInputImage::PixelType,
00114                                         typename TOutputImage::PixelType>));
00115 
00117 #endif
00118 
00119 protected:protected:
00120   BinaryMinMaxCurvatureFlowImageFilter();
00121   ~BinaryMinMaxCurvatureFlowImageFilter() {}
00122   void PrintSelf(std::ostream& os, Indent indent) const;
00123   
00126   virtual void InitializeIteration();
00127 
00128 private:
00129   BinaryMinMaxCurvatureFlowImageFilter(const Self&); //purposely not implemented
00130   void operator=(const Self&); //purposely not implemented
00131 
00132   double             m_Threshold;
00133   
00134 };
00135 
00136 } // end namspace itk
00137 
00138 #ifndef ITK_MANUAL_INSTANTIATION
00139 #include "itkBinaryMinMaxCurvatureFlowImageFilter.txx"
00140 #endif
00141 
00142 #endif
00143 

Generated at Wed Nov 5 20:26:24 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000