18 #ifndef itkIsotropicFourthOrderLevelSetImageFilter_h
19 #define itkIsotropicFourthOrderLevelSetImageFilter_h
73 template<
typename TInputImage,
typename TOutputImage >
103 itkGetConstMacro(MaxFilterIteration,
unsigned int);
104 itkSetMacro(MaxFilterIteration,
unsigned int);
109 virtual void PrintSelf(std::ostream & os,
Indent indent)
const ITK_OVERRIDE;
118 virtual bool Halt() ITK_OVERRIDE
120 if ( this->GetElapsedIterations() == m_MaxFilterIteration ) {
return true; }
121 else {
return false; }
130 #ifndef ITK_MANUAL_INSTANTIATION
131 #include "itkIsotropicFourthOrderLevelSetImageFilter.hxx"
FunctionType::RadiusType RadiusType
SmartPointer< Self > Pointer
ConstNeighborhoodIterator< TImageType >::RadiusType RadiusType
Base class for all process objects that output image data.
FunctionType::Pointer m_Function
This class implements the 4th-order level set isotropic diffusion (smoothing) PDE.
This class implements the fourth order level set PDE framework.
LevelSetFunctionWithRefitTerm< TOutputImage, SparseImageType > FunctionType
unsigned int m_MaxFilterIteration
Superclass::SparseImageType SparseImageType
SmartPointer< const Self > ConstPointer
virtual bool Halt() override
This class extends the LevelSetFunction class by adding a grow term based on a target curvature store...
Control indentation during Print() invocation.
IsotropicFourthOrderLevelSetImageFilter Self
~IsotropicFourthOrderLevelSetImageFilter() override
SparseFieldFourthOrderLevelSetImageFilter< TInputImage, TOutputImage > Superclass