ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkFastMarchingStoppingCriterionBase.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 
19 #ifndef itkFastMarchingStoppingCriterionBase_h
20 #define itkFastMarchingStoppingCriterionBase_h
21 
23 #include "itkNumericTraits.h"
24 #include "itkFastMarchingTraits.h"
25 
26 namespace itk
27 {
28 
34 template< typename TInput, typename TOutput >
36 {
37 public:
43 
44  typedef typename Traits::NodeType NodeType;
45  typedef typename Traits::OutputPixelType OutputPixelType;
46  typedef typename Traits::NodePairType NodePairType;
47  typedef typename Traits::OutputDomainType OutputDomainType;
48  typedef typename Traits::OutputDomainPointer OutputDomainPointer;
49 
52 
54  void Reinitialize()
55  {
59 
60  this->Reset();
61  }
62 
63  void SetCurrentNodePair( const NodePairType& iNodePair )
64  {
65  this->SetCurrentNode( iNodePair.GetNode() );
66  this->SetCurrentValue( iNodePair.GetValue() );
67  }
68 
69  itkSetObjectMacro( Domain, OutputDomainType );
70  itkGetModifiableObjectMacro(Domain, OutputDomainType );
71 
72  protected:
75  {
78  }
80 
82  virtual ~FastMarchingStoppingCriterionBase() ITK_OVERRIDE {}
83 
85 
88 
91  virtual void Reset() = 0;
92 
94  virtual void SetCurrentNode( const NodeType& iNode ) = 0;
95 
97  virtual void SetCurrentValue( const OutputPixelType& iValue )
98  {
100  m_CurrentValue = iValue;
101  }
102 
103 private:
105  void operator = ( const Self& );
106 };
107 }
108 #endif
Light weight base class for most itk classes.
virtual void SetCurrentNode(const NodeType &iNode)=0
void SetCurrentNodePair(const NodePairType &iNodePair)
virtual void SetCurrentValue(const OutputPixelType &iValue)
Abstract Stopping Criterion dedicated for Fast Marching Methods.
Base class traits to be used by the FastMarchingBase.
An abstract base class to represent a stopping criterion for an iterative algorithm.