00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkLaplacianSegmentationLevelSetImageFilter.h,v $ 00005 Language: C++ 00006 Date: $Date: 2002/09/24 16:43:24 $ 00007 Version: $Revision: 1.1 $ 00008 00009 Copyright (c) 2002 Insight 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 __itkLaplacianSegmentationLevelSetImageFilter_h_ 00018 #define __itkLaplacianSegmentationLevelSetImageFilter_h_ 00019 00020 #include "itkSegmentationLevelSetImageFilter.h" 00021 #include "itkLaplacianSegmentationLevelSetFunction.h" 00022 00023 namespace itk { 00024 00098 template <class TInputImage, class TOutputImage> 00099 class ITK_EXPORT LaplacianSegmentationLevelSetImageFilter 00100 : public SegmentationLevelSetImageFilter<TInputImage, TOutputImage> 00101 { 00102 public: 00104 typedef LaplacianSegmentationLevelSetImageFilter Self; 00105 typedef SegmentationLevelSetImageFilter<TInputImage, TOutputImage> Superclass; 00106 typedef SmartPointer<Self> Pointer; 00107 typedef SmartPointer<const Self> ConstPointer; 00108 00110 typedef typename Superclass::ValueType ValueType; 00111 00113 typedef LaplacianSegmentationLevelSetFunction<TOutputImage> LaplacianFunctionType; 00114 00116 itkTypeMacro(LaplacianSegmenationLevelSetImageFilter, SegmentationLevelSetImageFilter); 00117 00119 itkNewMacro(Self); 00120 00121 protected: 00122 ~LaplacianSegmentationLevelSetImageFilter() {} 00123 LaplacianSegmentationLevelSetImageFilter(); 00124 00125 virtual void PrintSelf(std::ostream &os, Indent indent) const; 00126 00127 00128 private: 00129 typename LaplacianFunctionType::Pointer m_LaplacianFunction; 00130 }; 00131 00132 } // end namespace itk 00133 00134 00135 00136 #ifndef ITK_MANUAL_INSTANTIATION 00137 #include "itkLaplacianSegmentationLevelSetImageFilter.txx" 00138 #endif 00139 00140 #endif