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

itkCurvesLevelSetImageFilter.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkCurvesLevelSetImageFilter.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/09/10 14:28:29 $ 00007 Version: $Revision: 1.2 $ 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 __itkCurvesLevelSetImageFilter_h_ 00018 #define __itkCurvesLevelSetImageFilter_h_ 00019 00020 #include "itkSegmentationLevelSetImageFilter.h" 00021 #include "itkCurvesLevelSetFunction.h" 00022 00023 namespace itk { 00024 00099 template <class TInputImage, 00100 class TFeatureImage, 00101 class TOutputPixelType = float > 00102 class ITK_EXPORT CurvesLevelSetImageFilter 00103 : public SegmentationLevelSetImageFilter<TInputImage, TFeatureImage, TOutputPixelType, Image<TOutputPixelType, ::itk::GetImageDimension<TInputImage>::ImageDimension> > 00104 { 00105 public: 00107 typedef CurvesLevelSetImageFilter Self; 00108 typedef SegmentationLevelSetImageFilter<TInputImage, TFeatureImage, TOutputPixelType, Image<TOutputPixelType, ::itk::GetImageDimension<TInputImage>::ImageDimension> > Superclass; 00109 typedef SmartPointer<Self> Pointer; 00110 typedef SmartPointer<const Self> ConstPointer; 00111 00113 typedef typename Superclass::ValueType ValueType; 00114 typedef typename Superclass::OutputImageType OutputImageType; 00115 typedef typename Superclass::FeatureImageType FeatureImageType; 00116 00118 typedef CurvesLevelSetFunction<OutputImageType, 00119 FeatureImageType> CurvesFunctionType; 00120 typedef typename CurvesFunctionType::Pointer 00121 CurvesFunctionPointer; 00122 00124 itkTypeMacro(CurvesLevelSetImageFilter, SegmentationLevelSetImageFilter); 00125 00127 itkNewMacro(Self); 00128 00130 void SetDerivativeSigma( float value ) 00131 { m_CurvesFunction->SetDerivativeSigma( value ); 00132 this->Modified(); } 00133 float GetDerivativeSigma() const 00134 { return m_CurvesFunction->GetDerivativeSigma(); } 00135 00136 protected: 00137 ~CurvesLevelSetImageFilter() {} 00138 CurvesLevelSetImageFilter(); 00139 00140 virtual void PrintSelf(std::ostream &os, Indent indent) const; 00141 00142 CurvesLevelSetImageFilter(const Self &); // purposely not implemented 00143 void operator=(const Self&); //purposely not implemented 00144 private: 00145 CurvesFunctionPointer m_CurvesFunction; 00146 }; 00147 00148 } // end namespace itk 00149 00150 00151 00152 #ifndef ITK_MANUAL_INSTANTIATION 00153 #include "itkCurvesLevelSetImageFilter.txx" 00154 #endif 00155 00156 #endif

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