ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFastMarchingReachedTargetNodesStoppingCriterion.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkFastMarchingReachedTargetNodesStoppingCriterion_h
20#define itkFastMarchingReachedTargetNodesStoppingCriterion_h
21
23#include "itkObjectFactory.h"
24#include "ITKFastMarchingExport.h"
25
26namespace itk
27{
46// Define how to print enumeration
47extern ITKFastMarching_EXPORT std::ostream &
49
59template <typename TInput, typename TOutput>
61 : public FastMarchingStoppingCriterionBase<TInput, TOutput>
62{
63public:
64 ITK_DISALLOW_COPY_AND_MOVE(FastMarchingReachedTargetNodesStoppingCriterion);
65
70 using typename Superclass::Traits;
71
73 itkNewMacro(Self);
74
76 itkOverrideGetNameOfClassMacro(FastMarchingReachedTargetNodesStoppingCriterion);
77
78 using typename Superclass::OutputPixelType;
79 using typename Superclass::NodeType;
80
82#if !defined(ITK_LEGACY_REMOVE)
84 static constexpr TargetConditionEnum OneTarget = TargetConditionEnum::OneTarget;
85 static constexpr TargetConditionEnum SomeTargets = TargetConditionEnum::SomeTargets;
86 static constexpr TargetConditionEnum AllTargets = TargetConditionEnum::AllTargets;
87#endif
88
92 void
94 {
95 m_TargetCondition = iCondition;
96 m_Initialized = false;
97 this->Modified();
98 }
99
100 itkGetConstReferenceMacro(TargetCondition, TargetConditionEnum);
102
105 itkSetMacro(TargetOffset, OutputPixelType);
106 itkGetMacro(TargetOffset, OutputPixelType);
108
110 void
112 {
114 m_Initialized = false;
115 this->Modified();
116 }
117
119 virtual void
120 SetTargetNodes(const std::vector<NodeType> & iNodes)
121 {
122 m_TargetNodes = iNodes;
123 m_Initialized = false;
124 this->Modified();
125 }
126
128 void
129 SetCurrentNode(const NodeType & iNode) override
130 {
131 if (!m_Initialized)
132 {
133 Initialize();
134 }
135
136 if (!m_Satisfied)
137 {
138 // Only check for reached targets if the mode is not NoTargets and
139 // there is at least one TargetPoint.
140 if (!m_TargetNodes.empty())
141 {
142 auto pointsIter = m_TargetNodes.begin();
143 const auto pointsEnd = m_TargetNodes.end();
144
145 while (pointsIter != pointsEnd)
146 {
147 if (*pointsIter == iNode)
148 {
149 this->m_ReachedTargetNodes.push_back(iNode);
151 break;
152 }
153 ++pointsIter;
154 }
155 if (m_Satisfied)
156 {
158 }
159 }
160 else
161 {
162 m_Satisfied = false;
163 }
164 }
165 }
166
168 bool
169 IsSatisfied() const override
170 {
171 return m_Satisfied && (this->m_CurrentValue >= m_StoppingValue);
172 }
173
175 std::string
176 GetDescription() const override
177 {
178 return "Target Nodes Reached with possible overshoot";
179 }
180
181protected:
188
191
192 TargetConditionEnum m_TargetCondition{ TargetConditionEnum::AllTargets };
193 std::vector<NodeType> m_TargetNodes{};
194 std::vector<NodeType> m_ReachedTargetNodes{};
198 bool m_Satisfied{ false };
199 bool m_Initialized{ false };
200
201 void
202 Reset() override
203 {
204 this->Initialize();
205 }
206
207 void
209 {
210 if (m_TargetCondition == TargetConditionEnum::OneTarget)
211 {
213 }
214 if (m_TargetCondition == TargetConditionEnum::AllTargets)
215 {
217 }
219 {
220 itkExceptionMacro("Number of target nodes to be reached is null");
221 }
223 {
224 itkExceptionMacro(
225 << "Number of target nodes to be reached is above the provided number of target nodes");
226 }
227 m_ReachedTargetNodes.clear();
228
229 m_Satisfied = false;
230 m_Initialized = true;
231 }
232};
233} // namespace itk
234#endif // itkFastMarchingThresholdStoppingCriterion_h
Contains all enum classes used by FastMarchingReachedTargetNodesStoppingCriterion class.
void SetNumberOfTargetsToBeReached(const vcl_size_t &iN)
Set the number of target nodes to be reached.
bool IsSatisfied() const override
returns if the stopping condition is satisfied or not.
virtual void SetTargetNodes(const std::vector< NodeType > &iNodes)
Set Target Nodes.
void SetCurrentNode(const NodeType &iNode) override
Set the current node.
std::string GetDescription() const override
Get a short description of the stopping criterion.
FastMarchingReachedTargetNodesStoppingCriterionEnums::TargetCondition TargetConditionEnum
virtual void Modified() const
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)