ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetBase.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 itkLevelSetBase_h
20#define itkLevelSetBase_h
21
22#include <utility>
23
24#include "itkIntTypes.h"
25#include "itkCovariantVector.h"
26#include "itkMatrix.h"
27#include "itkNumericTraits.h"
28#include "itkDataObject.h"
29
30namespace itk
31{
42template <typename TInput, unsigned int VDimension, typename TOutput, typename TDomain>
43class ITK_TEMPLATE_EXPORT LevelSetBase : public DataObject
44{
45public:
46 ITK_DISALLOW_COPY_AND_MOVE(LevelSetBase);
47
52
54 itkOverrideGetNameOfClassMacro(LevelSetBase);
55
56 static constexpr unsigned int Dimension = VDimension;
57
58 using InputType = TInput;
59 using OutputType = TOutput;
60 using DomainType = TDomain;
64
67
69 virtual OutputType
70 Evaluate(const InputType & iP) const = 0;
71
73 virtual GradientType
74 EvaluateGradient(const InputType & iP) const = 0;
75
77 virtual HessianType
78 EvaluateHessian(const InputType & iP) const = 0;
79
80 virtual OutputRealType
81 EvaluateLaplacian(const InputType & iP) const = 0;
82 virtual OutputRealType
84 virtual OutputRealType
85 EvaluateMeanCurvature(const InputType & iP) const = 0;
86
95 template <typename T>
96 class ITK_TEMPLATE_EXPORT DataType
97 {
98 public:
99 DataType() = delete;
100
101 DataType(std::string iName)
102 : m_Name(std::move(iName))
103 , m_Computed(false)
104 {}
105 DataType(const DataType & iData)
106 : m_Name(iData.m_Name)
107 , m_Value(iData.m_Value)
108 , m_Computed(iData.m_Computed)
109 {}
110
111 ~DataType() = default;
112
113 std::string m_Name;
116
117 void
118 operator=(const DataType & iData)
119 {
120 this->m_Name = iData.m_Name;
121 this->m_Value = iData.m_Value;
122 this->m_Computed = iData.m_Computed;
123 }
124 };
125
131 {
133 : Value("Value")
134 , Gradient("Gradient")
135 , Hessian("Hessian")
136 , Laplacian("Laplacian")
137 , GradientNorm("GradientNorm")
138 , MeanCurvature("MeanCurvature")
139 , ForwardGradient("ForwardGradient")
140 , BackwardGradient("BackwardGradient")
141 {
142 Value.m_Value = OutputType{};
143 Gradient.m_Value.Fill(OutputRealType{});
144 Hessian.m_Value.Fill(OutputRealType{});
145 Laplacian.m_Value = OutputRealType{};
146 GradientNorm.m_Value = OutputRealType{};
147 MeanCurvature.m_Value = OutputRealType{};
148 ForwardGradient.m_Value.Fill(OutputRealType{});
149 BackwardGradient.m_Value.Fill(OutputRealType{});
150 }
151
153 : Value(iData.Value)
154 , Gradient(iData.Gradient)
155 , Hessian(iData.Hessian)
156 , Laplacian(iData.Laplacian)
161 {}
162
163 ~LevelSetDataType() = default;
164
165 void
167 {
168 Value = iData.Value;
169 Gradient = iData.Gradient;
170 Hessian = iData.Hessian;
171 Laplacian = iData.Laplacian;
176 }
177
187 };
188
189 virtual void
190 Evaluate(const InputType & iP, LevelSetDataType & ioData) const = 0;
191 virtual void
192 EvaluateGradient(const InputType & iP, LevelSetDataType & ioData) const = 0;
193 virtual void
194 EvaluateHessian(const InputType & iP, LevelSetDataType & ioData) const = 0;
195 virtual void
196 EvaluateLaplacian(const InputType & iP, LevelSetDataType & ioData) const = 0;
197 virtual void
198 EvaluateGradientNorm(const InputType & iP, LevelSetDataType & ioData) const;
199 virtual void
200 EvaluateMeanCurvature(const InputType & iP, LevelSetDataType & ioData) const;
201 virtual void
202 EvaluateForwardGradient(const InputType & iP, LevelSetDataType & ioData) const = 0;
203 virtual void
204 EvaluateBackwardGradient(const InputType & iP, LevelSetDataType & ioData) const = 0;
205
207 virtual bool
208 IsInside(const InputType & iP) const;
209
212 itkGetConstMacro(MaximumNumberOfRegions, RegionType);
213
215 void
216 Initialize() override;
217
219 void
221
222 void
224
225 void
226 CopyInformation(const DataObject * data) override;
227
228 void
229 Graft(const DataObject * data) override;
230
231 bool
233
234 bool
236
241 void
242 SetRequestedRegion(const DataObject * data) override;
243
245 virtual void
247
248 itkGetConstMacro(RequestedRegion, RegionType);
249
251 virtual void
253
254 itkGetConstMacro(BufferedRegion, RegionType);
255
256protected:
258 ~LevelSetBase() override = default;
259
260 // If the RegionType is ITK_UNSTRUCTURED_REGION, then the following
261 // variables represent the maximum number of region that the data
262 // object can be broken into, which region out of how many is
263 // currently in the buffered region, and the number of regions and
264 // the specific region requested for the update. Data objects that
265 // do not support any division of the data can simply leave the
266 // MaximumNumberOfRegions as 1. The RequestedNumberOfRegions and
267 // RequestedRegion are used to define the currently requested
268 // region. The LargestPossibleRegion is always requested region = 0
269 // and number of regions = 1;
275};
276} // namespace itk
277
278#ifndef ITK_MANUAL_INSTANTIATION
279# include "itkLevelSetBase.hxx"
280#endif
281
282#endif // itkLevelSetBase_h
A templated class holding a n-Dimensional covariant vector.
Internal class used for one computed characteristic.
DataType(const DataType &iData)
void operator=(const DataType &iData)
void UpdateOutputInformation() override
typename NumericTraits< OutputType >::RealType OutputRealType
void Initialize() override
SmartPointer< Self > Pointer
SmartPointer< const Self > ConstPointer
virtual void EvaluateGradientNorm(const InputType &iP, LevelSetDataType &ioData) const
~LevelSetBase() override=default
CovariantVector< OutputRealType, VDimension > GradientType
virtual void SetRequestedRegion(const RegionType &region)
virtual HessianType EvaluateHessian(const InputType &iP) const =0
virtual void EvaluateMeanCurvature(const InputType &iP, LevelSetDataType &ioData) const
void Graft(const DataObject *data) override
virtual void SetBufferedRegion(const RegionType &region)
void SetRequestedRegion(const DataObject *data) override
virtual OutputRealType EvaluateLaplacian(const InputType &iP) const =0
virtual OutputRealType EvaluateGradientNorm(const InputType &iP) const
virtual void EvaluateGradient(const InputType &iP, LevelSetDataType &ioData) const =0
IdentifierType RegionType
void SetRequestedRegionToLargestPossibleRegion() override
virtual void EvaluateForwardGradient(const InputType &iP, LevelSetDataType &ioData) const =0
virtual void EvaluateLaplacian(const InputType &iP, LevelSetDataType &ioData) const =0
virtual void EvaluateHessian(const InputType &iP, LevelSetDataType &ioData) const =0
virtual OutputType Evaluate(const InputType &iP) const =0
void CopyInformation(const DataObject *data) override
Matrix< OutputRealType, VDimension, VDimension > HessianType
virtual void EvaluateBackwardGradient(const InputType &iP, LevelSetDataType &ioData) const =0
virtual GradientType EvaluateGradient(const InputType &iP) const =0
bool RequestedRegionIsOutsideOfTheBufferedRegion() override
virtual OutputRealType EvaluateMeanCurvature(const InputType &iP) const =0
bool VerifyRequestedRegion() override
virtual bool IsInside(const InputType &iP) const
virtual void Evaluate(const InputType &iP, LevelSetDataType &ioData) const =0
A templated class holding a M x N size Matrix.
Definition itkMatrix.h:53
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition itkIntTypes.h:90
STL namespace.
DataType< OutputRealType > Laplacian
LevelSetDataType(const LevelSetDataType &iData)
void operator=(const LevelSetDataType &iData)
DataType< OutputRealType > GradientNorm
DataType< OutputRealType > MeanCurvature
DataType< GradientType > ForwardGradient
DataType< GradientType > BackwardGradient
DataType< GradientType > Gradient