ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkUpdateMalcolmSparseLevelSet.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 itkUpdateMalcolmSparseLevelSet_h
20#define itkUpdateMalcolmSparseLevelSet_h
21
22#include "itkImage.h"
29
30namespace itk
31{
40template <unsigned int VDimension, typename TEquationContainer>
41class ITK_TEMPLATE_EXPORT UpdateMalcolmSparseLevelSet : public Object
42{
43public:
44 ITK_DISALLOW_COPY_AND_MOVE(UpdateMalcolmSparseLevelSet);
45
50
52 itkNewMacro(Self);
53
55 itkOverrideGetNameOfClassMacro(UpdateMalcolmSparseLevelSet);
56
57 static constexpr unsigned int ImageDimension = VDimension;
58
64
67
72
77
81
82 using EquationContainerType = TEquationContainer;
83 using EquationContainerPointer = typename EquationContainerType::Pointer;
84 using TermContainerPointer = typename EquationContainerType::TermContainerPointer;
85
86 itkGetModifiableObjectMacro(OutputLevelSet, LevelSetType);
87
89 void
91
94 itkSetObjectMacro(InputLevelSet, LevelSetType);
95 itkGetModifiableObjectMacro(InputLevelSet, LevelSetType);
98 itkGetMacro(RMSChangeAccumulator, LevelSetOutputRealType);
99
102 itkSetObjectMacro(EquationContainer, EquationContainerType);
103 itkGetModifiableObjectMacro(EquationContainer, EquationContainerType);
107 itkSetMacro(CurrentLevelSetId, IdentifierType);
108 itkGetMacro(CurrentLevelSetId, IdentifierType);
110protected:
112 ~UpdateMalcolmSparseLevelSet() override = default;
113
114 // output
116
118
122
125
127
129
131
133 void
135
138 void
140
143 void
144 EvolveWithPhasedPropagation(LevelSetLayerType & ioList, LevelSetLayerType & ioUpdate, const bool iContraction);
145
148 void
150
151private:
152 // input
154
156
157 using NodePairType = std::pair<LevelSetInputType, LevelSetOutputType>;
158};
159} // namespace itk
160
161#ifndef ITK_MANUAL_INSTANTIATION
162# include "itkUpdateMalcolmSparseLevelSet.hxx"
163#endif
164
165#endif // itkUpdateMalcolmSparseLevelSet_h
Templated n-dimensional image class.
Definition itkImage.h:89
SmartPointer< Self > Pointer
Definition itkImage.h:96
typename LayerType::const_iterator LayerConstIterator
typename LabelObjectType::LineType LabelObjectLineType
std::map< LayerIdType, LayerType > LayerMapType
typename LabelObjectType::Pointer LabelObjectPointer
std::map< InputType, OutputType, Functor::LexicographicCompare > LayerType
LabelObject< LayerIdType, VDimension > LabelObjectType
typename LayerMapType::const_iterator LayerMapConstIterator
typename LabelObjectType::LengthType LabelObjectLengthType
Derived class for the Malcolm representation of level-set function.
A neighborhood iterator which can take on an arbitrary shape.
Implements transparent reference counting.
~UpdateMalcolmSparseLevelSet() override=default
void EvolveWithPhasedPropagation(LevelSetLayerType &ioList, LevelSetLayerType &ioUpdate, const bool iContraction)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition itkIntTypes.h:90