00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
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,
00099 class TFeatureImage,
00100 class TOutputPixelType = float>
00101 class ITK_EXPORT LaplacianSegmentationLevelSetImageFilter
00102 : public SegmentationLevelSetImageFilter<TInputImage, TFeatureImage, TOutputPixelType, Image<TOutputPixelType, ::itk::GetImageDimension<TInputImage>::ImageDimension> >
00103 {
00104 public:
00106 typedef LaplacianSegmentationLevelSetImageFilter Self;
00107 typedef SegmentationLevelSetImageFilter<TInputImage, TFeatureImage, TOutputPixelType, Image<TOutputPixelType, ::itk::GetImageDimension<TInputImage>::ImageDimension> > Superclass;
00108 typedef SmartPointer<Self> Pointer;
00109 typedef SmartPointer<const Self> ConstPointer;
00110
00112 typedef typename Superclass::ValueType ValueType;
00113 typedef typename Superclass::OutputImageType OutputImageType;
00114 typedef typename Superclass::FeatureImageType FeatureImageType;
00115
00116
00118 typedef LaplacianSegmentationLevelSetFunction<OutputImageType,
00119 FeatureImageType> LaplacianFunctionType;
00120
00122 itkTypeMacro(LaplacianSegmenationLevelSetImageFilter, SegmentationLevelSetImageFilter);
00123
00125 itkNewMacro(Self);
00126
00127 protected:
00128 ~LaplacianSegmentationLevelSetImageFilter() {}
00129 LaplacianSegmentationLevelSetImageFilter();
00130
00131 virtual void PrintSelf(std::ostream &os, Indent indent) const;
00132
00133
00134 private:
00135 typename LaplacianFunctionType::Pointer m_LaplacianFunction;
00136 };
00137
00138 }
00139
00140
00141
00142 #ifndef ITK_MANUAL_INSTANTIATION
00143 #include "itkLaplacianSegmentationLevelSetImageFilter.txx"
00144 #endif
00145
00146 #endif