ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetEquationTermBase.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 itkLevelSetEquationTermBase_h
20#define itkLevelSetEquationTermBase_h
21
22#include "itkObject.h"
24#include <unordered_set>
25
26namespace itk
27{
47template <typename TInputImage, // Input image
48 typename TLevelSetContainer>
49class ITK_TEMPLATE_EXPORT LevelSetEquationTermBase : public Object
50{
51public:
52 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEquationTermBase);
53
58
60 itkOverrideGetNameOfClassMacro(LevelSetEquationTermBase);
61
62 using InputImageType = TInputImage;
63 using InputImagePointer = typename InputImageType::Pointer;
64 using InputPixelType = typename InputImageType::PixelType;
66
68 using LevelSetContainerType = TLevelSetContainer;
69 using LevelSetIdentifierType = typename LevelSetContainerType::LevelSetIdentifierType;
70 using LevelSetContainerPointer = typename LevelSetContainerType::Pointer;
71 using LevelSetType = typename LevelSetContainerType::LevelSetType;
72 using LevelSetPointer = typename LevelSetContainerType::LevelSetPointer;
73 using LevelSetOutputPixelType = typename LevelSetContainerType::OutputType;
74 using LevelSetOutputRealType = typename LevelSetContainerType::OutputRealType;
75 using LevelSetInputIndexType = typename LevelSetContainerType::InputIndexType;
76 using LevelSetGradientType = typename LevelSetContainerType::GradientType;
77 using LevelSetHessianType = typename LevelSetContainerType::HessianType;
78 using LevelSetDataType = typename LevelSetContainerType::LevelSetDataType;
79
80 using DomainMapImageFilterType = typename LevelSetContainerType::DomainMapImageFilterType;
81 using CacheImageType = typename LevelSetContainerType::CacheImageType;
82
84 // using HeavisidePointer = typename HeavisideType::Pointer;
86
89 itkSetObjectMacro(Input, InputImageType);
90 itkGetModifiableObjectMacro(Input, InputImageType);
92 itkSetMacro(Coefficient, LevelSetOutputRealType);
93 itkGetMacro(Coefficient, LevelSetOutputRealType);
94
95 itkSetMacro(CurrentLevelSetId, LevelSetIdentifierType);
96 itkGetMacro(CurrentLevelSetId, LevelSetIdentifierType);
97
98 itkGetModifiableObjectMacro(CurrentLevelSetPointer, LevelSetType);
99
100 virtual void
102 itkGetModifiableObjectMacro(LevelSetContainer, LevelSetContainerType);
103
109
112
114 virtual void
116
118 virtual void
120
122 virtual void
124 const LevelSetOutputRealType & oldValue,
125 const LevelSetOutputRealType & newValue) = 0;
126
128 itkGetConstMacro(CFLContribution, LevelSetOutputRealType);
129
132 itkSetStringMacro(TermName);
133 itkGetStringMacro(TermName);
136 virtual void
137 Update() = 0;
138
139 using RequiredDataType = std::unordered_set<std::string>;
140
141 const RequiredDataType &
143
144protected:
147
149 ~LevelSetEquationTermBase() override = default;
150
151 void
153
160
162 Value(const LevelSetInputIndexType & iP, const LevelSetDataType & iData) = 0;
163
166
169
172
174
177
182
187
191 std::string m_TermName{};
192
194};
195} // namespace itk
196
197#ifndef ITK_MANUAL_INSTANTIATION
198# include "itkLevelSetEquationTermBase.hxx"
199#endif
200
201#endif
Base class of the Heaviside function.
Container of Level-Sets.
virtual void Initialize(const LevelSetInputIndexType &iP)=0
typename LevelSetContainerType::LevelSetIdentifierType LevelSetIdentifierType
virtual void UpdatePixel(const LevelSetInputIndexType &iP, const LevelSetOutputRealType &oldValue, const LevelSetOutputRealType &newValue)=0
typename LevelSetContainerType::LevelSetDataType LevelSetDataType
const RequiredDataType & GetRequiredData() const
virtual void SetLevelSetContainer(LevelSetContainerType *iContainer)
~LevelSetEquationTermBase() override=default
virtual void InitializeParameters()=0
virtual LevelSetOutputRealType Evaluate(const LevelSetInputIndexType &iP)
typename LevelSetContainerType::DomainMapImageFilterType DomainMapImageFilterType
HeavisideStepFunctionBase< LevelSetOutputRealType, LevelSetOutputRealType > HeavisideType
typename LevelSetContainerType::OutputRealType LevelSetOutputRealType
virtual LevelSetOutputRealType Value(const LevelSetInputIndexType &iP, const LevelSetDataType &iData)=0
virtual LevelSetOutputRealType Value(const LevelSetInputIndexType &iP)=0
typename LevelSetContainerType::GradientType LevelSetGradientType
typename LevelSetContainerType::LevelSetPointer LevelSetPointer
typename LevelSetContainerType::InputIndexType LevelSetInputIndexType
typename NumericTraits< InputPixelType >::RealType InputPixelRealType
virtual LevelSetOutputRealType Evaluate(const LevelSetInputIndexType &iP, const LevelSetDataType &iData)
typename LevelSetContainerType::CacheImageType CacheImageType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....