ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetEquationAdvectionTerm.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 itkLevelSetEquationAdvectionTerm_h
20#define itkLevelSetEquationAdvectionTerm_h
21
25#include "itkVector.h"
26#include "vnl/vnl_matrix_fixed.h"
27
28namespace itk
29{
50template <typename TInput, // Input image or mesh
51 typename TLevelSetContainer>
52class ITK_TEMPLATE_EXPORT LevelSetEquationAdvectionTerm : public LevelSetEquationTermBase<TInput, TLevelSetContainer>
53{
54public:
55 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEquationAdvectionTerm);
56
61
63 itkNewMacro(Self);
64
66 itkOverrideGetNameOfClassMacro(LevelSetEquationAdvectionTerm);
67
68 using typename Superclass::InputImageType;
69 using typename Superclass::InputImagePointer;
70 using typename Superclass::InputPixelType;
71 using typename Superclass::InputPixelRealType;
72
75 using typename Superclass::LevelSetType;
76 using typename Superclass::LevelSetPointer;
83 using typename Superclass::LevelSetDataType;
84
85 using typename Superclass::HeavisideType;
87
88 static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
89
91
94
95
96 void
98 itkGetModifiableObjectMacro(AdvectionImage, AdvectionImageType);
99
100 itkSetMacro(DerivativeSigma, LevelSetOutputRealType);
101 itkGetMacro(DerivativeSigma, LevelSetOutputRealType);
102
107
109
111 void
112 Update() override
113 {}
114
116 void
118
120 void
122 {}
123
125 void
126 UpdatePixel(const LevelSetInputIndexType & itkNotUsed(iP),
127 const LevelSetOutputRealType & itkNotUsed(oldValue),
128 const LevelSetOutputRealType & itkNotUsed(newValue)) override
129 {}
130
131protected:
133
134 ~LevelSetEquationAdvectionTerm() override = default;
135
137
140 VectorType
142
147 Value(const LevelSetInputIndexType & iP) override;
149 Value(const LevelSetInputIndexType & iP, const LevelSetDataType & iData) override;
152
153private:
155
157
158 void
160};
161
162} // namespace itk
163
164#ifndef ITK_MANUAL_INSTANTIATION
165# include "itkLevelSetEquationAdvectionTerm.hxx"
166#endif
167
168#endif
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
itk::Size< VDimension > RadiusType
Templated n-dimensional image class.
Definition itkImage.h:89
void SetAdvectionImage(AdvectionImageType *iImage)
~LevelSetEquationAdvectionTerm() override=default
LevelSetOutputRealType Value(const LevelSetInputIndexType &iP) override
ConstNeighborhoodIterator< InputImageType, DefaultBoundaryConditionType > NeighborhoodType
typename LevelSetContainerType::OutputRealType LevelSetOutputRealType
typename AdvectionImageType::Pointer AdvectionImagePointer
typename LevelSetContainerType::LevelSetDataType LevelSetDataType
void UpdatePixel(const LevelSetInputIndexType &iP, const LevelSetOutputRealType &oldValue, const LevelSetOutputRealType &newValue) override
void Initialize(const LevelSetInputIndexType &) override
LevelSetOutputRealType m_NeighborhoodScales[ImageDimension]
typename ConstNeighborhoodIterator< InputImageType >::RadiusType RadiusType
LevelSetOutputRealType Value(const LevelSetInputIndexType &iP, const LevelSetDataType &iData) override
LevelSetEquationTermBase< TInput, TLevelSetContainer > Superclass
VectorType AdvectionSpeed(const LevelSetInputIndexType &iP) const
Image< VectorType, Self::ImageDimension > AdvectionImageType
Vector< LevelSetOutputRealType, Self::ImageDimension > NeighborhoodScalesType
typename LevelSetContainerType::InputIndexType LevelSetInputIndexType
typename LevelSetContainerType::GradientType LevelSetGradientType
ZeroFluxNeumannBoundaryCondition< InputImageType > DefaultBoundaryConditionType
typename LevelSetContainerType::LevelSetIdentifierType LevelSetIdentifierType
typename LevelSetContainerType::LevelSetDataType LevelSetDataType
HeavisideStepFunctionBase< LevelSetOutputRealType, LevelSetOutputRealType > HeavisideType
typename LevelSetContainerType::OutputRealType LevelSetOutputRealType
typename LevelSetContainerType::GradientType LevelSetGradientType
typename LevelSetContainerType::LevelSetPointer LevelSetPointer
typename LevelSetContainerType::InputIndexType LevelSetInputIndexType
typename NumericTraits< InputPixelType >::RealType InputPixelRealType
Implements transparent reference counting.
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
A function object that determines a neighborhood of values at an image boundary according to a Neuman...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....