ITK  6.0.0
Insight Toolkit
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;
85 using TermContainerPointer = typename EquationContainerType::TermContainerPointer;
86
87 itkGetModifiableObjectMacro(OutputLevelSet, LevelSetType);
88
90 void
92
94 itkSetObjectMacro(InputLevelSet, LevelSetType);
95 itkGetModifiableObjectMacro(InputLevelSet, LevelSetType);
99 itkGetMacro(RMSChangeAccumulator, LevelSetOutputRealType);
100
102 itkSetObjectMacro(EquationContainer, EquationContainerType);
103 itkGetModifiableObjectMacro(EquationContainer, EquationContainerType);
107 itkSetMacro(CurrentLevelSetId, IdentifierType);
108 itkGetMacro(CurrentLevelSetId, IdentifierType);
111protected:
113 ~UpdateShiSparseLevelSet() override = default;
114
115 // output
116 LevelSetPointer m_OutputLevelSet{};
117
118 IdentifierType m_CurrentLevelSetId{};
119 LevelSetOutputRealType m_RMSChangeAccumulator{};
120 EquationContainerPointer m_EquationContainer{};
121
124
125 LabelImagePointer m_InternalImage{};
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
148 LevelSetPointer m_InputLevelSet{};
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
Templated n-dimensional image to store labeled objects.
Definition: itkLabelMap.h:71
The base class for the representation of a labeled binary object in an image.
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
typename LayerMapType::const_iterator LayerMapConstIterator
typename LabelObjectType::LengthType LabelObjectLengthType
Light weight base class for most itk classes.
Base class for most ITK classes.
Definition: itkObject.h:62
A neighborhood iterator which can take on an arbitrary shape.
Derived class for the shi representation of level-set function.
Base class for updating the Shi representation of level-set function.
~UpdateShiSparseLevelSet() override=default
typename EquationContainerType::Pointer EquationContainerPointer
typename LevelSetType::LabelObjectLengthType LevelSetLabelObjectLengthType
typename LevelSetType::LayerMapConstIterator LevelSetLayerMapConstIterator
typename LevelSetType::LayerConstIterator LevelSetLayerConstIterator
typename LevelSetType::OffsetType LevelSetOffsetType
typename LevelSetType::LabelObjectType LevelSetLabelObjectType
typename LevelSetType::LayerType LevelSetLayerType
typename LevelSetType::LabelObjectLineType LevelSetLabelObjectLineType
std::pair< LevelSetInputType, LevelSetOutputType > NodePairType
typename LevelSetType::LayerMapType LevelSetLayerMapType
typename LevelSetType::InputType LevelSetInputType
typename LevelSetType::LayerIterator LevelSetLayerIterator
typename LevelSetType::OutputRealType LevelSetOutputRealType
typename LabelImageType::Pointer LabelImagePointer
typename LevelSetType::LabelMapPointer LevelSetLabelMapPointer
typename LevelSetType::OutputType LevelSetOutputType
typename LevelSetType::LabelObjectPointer LevelSetLabelObjectPointer
typename LevelSetType::LayerMapIterator LevelSetLayerMapIterator
bool Con(const LevelSetInputType &idx, const LevelSetOutputType &currentStatus, const LevelSetOutputRealType &currentUpdate) const
typename LevelSetType::Pointer LevelSetPointer
typename EquationContainerType::TermContainerPointer TermContainerPointer
typename LevelSetType::LabelMapType LevelSetLabelMapType
SmartPointer< Self > Pointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition: itkIntTypes.h:90