ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFastMarchingBase.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 itkFastMarchingBase_h
20#define itkFastMarchingBase_h
21
22#include "itkIntTypes.h"
25#include "ITKFastMarchingExport.h"
26
27#include <queue>
28#include <functional>
29
30namespace itk
31{
37{
38public:
43 enum class TopologyCheck : uint8_t
44 {
48 };
49};
50// Define how to print enumeration
51extern ITKFastMarching_EXPORT std::ostream &
52 operator<<(std::ostream & out, const FastMarchingTraitsEnums::TopologyCheck value);
53
119template <typename TInput, typename TOutput>
120class ITK_TEMPLATE_EXPORT FastMarchingBase : public FastMarchingTraits<TInput, TOutput>::SuperclassType
121{
122public:
123 ITK_DISALLOW_COPY_AND_MOVE(FastMarchingBase);
124
126 using SuperclassType = typename Traits::SuperclassType;
127
129 using Superclass = typename FastMarchingTraits<TInput, TOutput>::SuperclassType;
132
134 itkOverrideGetNameOfClassMacro(FastMarchingBase);
135
137 using InputDomainType = typename Traits::InputDomainType;
138 using InputDomainPointer = typename Traits::InputDomainPointer;
139 using InputPixelType = typename Traits::InputPixelType;
140
142 using OutputDomainType = typename Traits::OutputDomainType;
143 using OutputDomainPointer = typename Traits::OutputDomainPointer;
144 using OutputPixelType = typename Traits::OutputPixelType;
145
147 using NodeType = typename Traits::NodeType;
148
150 using NodePairType = typename Traits::NodePairType;
151 using NodePairContainerType = typename Traits::NodePairContainerType;
152 using NodePairContainerPointer = typename Traits::NodePairContainerPointer;
153 using NodePairContainerConstIterator = typename Traits::NodePairContainerConstIterator;
154
155 using LabelType = typename Traits::LabelType;
156
160
161 /*
162 using ElementIdentifier = long;
163
164 using PriorityQueueElementType = MinPriorityQueueElementWrapper< NodeType,
165 OutputPixelType,
166 ElementIdentifier >;
167
168 using PriorityQueueType = PriorityQueueContainer< PriorityQueueElementType,
169 PriorityQueueElementType, OutputPixelType, ElementIdentifier >;
170 using PriorityQueuePointer = typename PriorityQueueType::Pointer;
171 */
172
174#if !defined(ITK_LEGACY_REMOVE)
175 using TopologyCheckType = FastMarchingTraitsEnums::TopologyCheck;
177 static constexpr TopologyCheckEnum Nothing = TopologyCheckEnum::Nothing;
178 static constexpr TopologyCheckEnum NoHandles = TopologyCheckEnum::NoHandles;
179 static constexpr TopologyCheckEnum Strict = TopologyCheckEnum::Strict;
180#endif
181
186 itkGetConstReferenceMacro(TopologyCheck, TopologyCheckEnum);
190 itkSetObjectMacro(TrialPoints, NodePairContainerType);
191 itkGetModifiableObjectMacro(TrialPoints, NodePairContainerType);
195 itkSetObjectMacro(AlivePoints, NodePairContainerType);
196 itkGetModifiableObjectMacro(AlivePoints, NodePairContainerType);
200 itkSetObjectMacro(ProcessedPoints, NodePairContainerType);
201 itkGetModifiableObjectMacro(ProcessedPoints, NodePairContainerType);
205 itkSetObjectMacro(ForbiddenPoints, NodePairContainerType);
206 itkGetModifiableObjectMacro(ForbiddenPoints, NodePairContainerType);
209 itkSetObjectMacro(StoppingCriterion, StoppingCriterionType);
210 itkGetModifiableObjectMacro(StoppingCriterion, StoppingCriterionType);
211
213 itkGetMacro(SpeedConstant, double);
214 itkSetMacro(SpeedConstant, double);
215
217 itkGetMacro(NormalizationFactor, double);
218 itkSetMacro(NormalizationFactor, double);
219
221 itkGetMacro(TargetReachedValue, OutputPixelType);
222
227 itkSetMacro(CollectPoints, bool);
228
231 itkGetConstReferenceMacro(CollectPoints, bool);
232 itkBooleanMacro(CollectPoints);
234protected:
237
239 ~FastMarchingBase() override = default;
240
242
246
250
255
257
258 // PriorityQueuePointer m_Heap;
259 using HeapContainerType = std::vector<NodePairType>;
260 using NodeComparerType = std::greater<NodePairType>;
261
262 using PriorityQueueType = std::priority_queue<NodePairType, HeapContainerType, NodeComparerType>;
263
265
267
269 virtual IdentifierType
271
273 virtual const OutputPixelType
274 GetOutputValue(OutputDomainType * oDomain, const NodeType & iNode) const = 0;
275
277 virtual void
278 SetOutputValue(OutputDomainType * oDomain, const NodeType & iNode, const OutputPixelType & iValue) = 0;
279
283 virtual unsigned char
284 GetLabelValueForGivenNode(const NodeType & iNode) const = 0;
285
289 virtual void
290 SetLabelValueForGivenNode(const NodeType & iNode, const LabelType & iLabel) = 0;
291
296 virtual void
297 UpdateNeighbors(OutputDomainType * oDomain, const NodeType & iNode) = 0;
298
303 virtual void
304 UpdateValue(OutputDomainType * oDomain, const NodeType & iNode) = 0;
305
310 virtual bool
311 CheckTopology(OutputDomainType * oDomain, const NodeType & iNode) = 0;
312
314 void
316
318 virtual void
320
322 void
323 GenerateData() override;
324
326 void
327 PrintSelf(std::ostream & os, Indent indent) const override;
328};
329} // namespace itk
330
331#ifndef ITK_MANUAL_INSTANTIATION
332# include "itkFastMarchingBase.hxx"
333#endif
334
335#endif
OutputPixelType m_TargetReachedValue
FastMarchingTraits< TInput, TOutput > Traits
void Initialize(OutputDomainType *oDomain)
NodePairContainerPointer m_ProcessedPoints
virtual void SetLabelValueForGivenNode(const NodeType &iNode, const LabelType &iLabel)=0
Set the Label Value for a given node.
typename StoppingCriterionType::Pointer StoppingCriterionPointer
virtual const OutputPixelType GetOutputValue(OutputDomainType *oDomain, const NodeType &iNode) const =0
Get the output value (front value) for a given node.
virtual unsigned char GetLabelValueForGivenNode(const NodeType &iNode) const =0
Get the LabelEnum Value for a given node.
TopologyCheckEnum m_TopologyCheck
typename Traits::SuperclassType SuperclassType
virtual IdentifierType GetTotalNumberOfNodes() const =0
Get the total number of nodes in the domain.
typename Traits::InputPixelType InputPixelType
typename Traits::OutputDomainPointer OutputDomainPointer
NodePairContainerPointer m_ForbiddenPoints
typename FastMarchingTraits< TInput, TOutput >::SuperclassType Superclass
typename Traits::NodePairContainerType NodePairContainerType
typename Traits::InputDomainType InputDomainType
void GenerateData() override
std::vector< NodePairType > HeapContainerType
void PrintSelf(std::ostream &os, Indent indent) const override
PrintSelf method.
virtual bool CheckTopology(OutputDomainType *oDomain, const NodeType &iNode)=0
Check if the current node violate topological criterion.
typename Traits::OutputDomainType OutputDomainType
virtual void UpdateValue(OutputDomainType *oDomain, const NodeType &iNode)=0
Update value for a given node.
typename Traits::NodePairContainerPointer NodePairContainerPointer
typename Traits::NodeType NodeType
SmartPointer< const Self > ConstPointer
virtual void InitializeOutput(OutputDomainType *oDomain)=0
typename Traits::InputDomainPointer InputDomainPointer
OutputPixelType m_TopologyValue
typename Traits::NodePairType NodePairType
~FastMarchingBase() override=default
Destructor.
FastMarchingTraitsEnums::TopologyCheck TopologyCheckEnum
virtual void SetOutputValue(OutputDomainType *oDomain, const NodeType &iNode, const OutputPixelType &iValue)=0
Set the output value (front value) for a given node.
std::priority_queue< NodePairType, HeapContainerType, NodeComparerType > PriorityQueueType
std::greater< NodePairType > NodeComparerType
virtual void UpdateNeighbors(OutputDomainType *oDomain, const NodeType &iNode)=0
Update neighbors to a given node.
NodePairContainerPointer m_TrialPoints
SmartPointer< Self > Pointer
FastMarchingStoppingCriterionBase< TInput, TOutput > StoppingCriterionType
StoppingCriterionPointer m_StoppingCriterion
NodePairContainerPointer m_AlivePoints
FastMarchingBase()
Constructor.
typename Traits::OutputPixelType OutputPixelType
typename Traits::LabelType LabelType
typename Traits::NodePairContainerConstIterator NodePairContainerConstIterator
Abstract Stopping Criterion dedicated for Fast Marching Methods.
Base class traits to be used by the FastMarchingBase.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition itkIntTypes.h:90
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)