ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkUpdateShiSparseLevelSet.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 itkUpdateShiSparseLevelSet_h
20#define itkUpdateShiSparseLevelSet_h
21
22#include "itkImage.h"
30
31namespace itk
32{
41template <unsigned int VDimension, typename TEquationContainer>
42class ITK_TEMPLATE_EXPORT UpdateShiSparseLevelSet : public Object
43{
44public:
45 ITK_DISALLOW_COPY_AND_MOVE(UpdateShiSparseLevelSet);
46
51
53 itkNewMacro(Self);
54
56 itkOverrideGetNameOfClassMacro(UpdateShiSparseLevelSet);
57
58 static constexpr unsigned int ImageDimension = VDimension;
59
65
68
73
78
82
83 using EquationContainerType = TEquationContainer;
84 using EquationContainerPointer = typename EquationContainerType::Pointer;
85 using TermContainerPointer = typename EquationContainerType::TermContainerPointer;
86
87 itkGetModifiableObjectMacro(OutputLevelSet, LevelSetType);
88
90 void
92
94 itkSetObjectMacro(InputLevelSet, LevelSetType);
95 itkGetModifiableObjectMacro(InputLevelSet, LevelSetType);
97
99 itkGetMacro(RMSChangeAccumulator, LevelSetOutputRealType);
100
102 itkSetObjectMacro(EquationContainer, EquationContainerType);
103 itkGetModifiableObjectMacro(EquationContainer, EquationContainerType);
105
107 itkSetMacro(CurrentLevelSetId, IdentifierType);
108 itkGetMacro(CurrentLevelSetId, IdentifierType);
110
111protected:
113 ~UpdateShiSparseLevelSet() override = default;
114
115 // output
117
121
124
126
128
130 // this is the same as Procedure 2
131 // Input is a update image point m_UpdateImage
132 // Input is also ShiSparseLevelSetImagePointer
133 void
135
137 void
139
141 bool
143 const LevelSetOutputType & currentStatus,
144 const LevelSetOutputRealType & currentUpdate) const;
145
146private:
147 // input
150
151 using NodePairType = std::pair<LevelSetInputType, LevelSetOutputType>;
152};
153} // namespace itk
154
155#ifndef ITK_MANUAL_INSTANTIATION
156# include "itkUpdateShiSparseLevelSet.hxx"
157#endif
158
159#endif // itkUpdateShiSparseLevelSet_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
A neighborhood iterator which can take on an arbitrary shape.
Derived class for the shi representation of level-set function.
Implements transparent reference counting.
~UpdateShiSparseLevelSet() override=default
bool Con(const LevelSetInputType &idx, const LevelSetOutputType &currentStatus, const LevelSetOutputRealType &currentUpdate) const
typename EquationContainerType::TermContainerPointer TermContainerPointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition itkIntTypes.h:90