ITK  5.0.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 >
35 class FastMarchingStoppingCriterionBase : public StoppingCriterionBase
36 {
37 public:
38  ITK_DISALLOW_COPY_AND_ASSIGN(FastMarchingStoppingCriterionBase);
39 
40  using Self = FastMarchingStoppingCriterionBase;
41  using Superclass = StoppingCriterionBase;
42  using Pointer = SmartPointer< Self >;
43  using ConstPointer = SmartPointer< const Self >;
44  using Traits = FastMarchingTraits< TInput, TOutput >;
45 
46  using NodeType = typename Traits::NodeType;
47  using OutputPixelType = typename Traits::OutputPixelType;
48  using NodePairType = typename Traits::NodePairType;
49  using OutputDomainType = typename Traits::OutputDomainType;
50  using OutputDomainPointer = typename Traits::OutputDomainPointer;
51 
53  itkTypeMacro(FastMarchingStoppingCriterionBase, StoppingCriterionBase);
54 
56  void Reinitialize()
57  {
61 
62  this->Reset();
63  }
64 
65  void SetCurrentNodePair( const NodePairType& iNodePair )
66  {
67  this->SetCurrentNode( iNodePair.GetNode() );
68  this->SetCurrentValue( iNodePair.GetValue() );
69  }
70 
71  itkSetObjectMacro( Domain, OutputDomainType );
72  itkGetModifiableObjectMacro(Domain, OutputDomainType );
73 
74  protected:
76  FastMarchingStoppingCriterionBase() : Superclass(), m_Domain( nullptr )
77  {
80  }
82 
84  ~FastMarchingStoppingCriterionBase() override = default;
85 
86  OutputDomainPointer m_Domain;
87 
88  OutputPixelType m_PreviousValue;
89  OutputPixelType m_CurrentValue;
90 
93  virtual void Reset() = 0;
94 
96  virtual void SetCurrentNode( const NodeType& iNode ) = 0;
97 
Define numeric traits for std::vector.