ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetEquationPropagationTerm.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 itkLevelSetEquationPropagationTerm_h
20#define itkLevelSetEquationPropagationTerm_h
21
25#include "itkVector.h"
26#include "vnl/vnl_matrix_fixed.h"
27
28namespace itk
29{
46template <typename TInput, // Input image or mesh
47 typename TLevelSetContainer,
48 typename TPropagationImage = TInput>
49class ITK_TEMPLATE_EXPORT LevelSetEquationPropagationTerm : public LevelSetEquationTermBase<TInput, TLevelSetContainer>
50{
51public:
52 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEquationPropagationTerm);
53
58
60 itkNewMacro(Self);
61
63 itkOverrideGetNameOfClassMacro(LevelSetEquationPropagationTerm);
64
65 using typename Superclass::InputImageType;
66 using typename Superclass::InputImagePointer;
67 using typename Superclass::InputPixelType;
68 using typename Superclass::InputPixelRealType;
69
72 using typename Superclass::LevelSetType;
73 using typename Superclass::LevelSetPointer;
80 using typename Superclass::LevelSetDataType;
81
82 using typename Superclass::HeavisideType;
84
85 static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
86
87 using PropagationImageType = TPropagationImage;
88 using PropagationImagePointer = typename PropagationImageType::Pointer;
89
94
96
101 itkSetObjectMacro(PropagationImage, PropagationImageType);
102 itkGetModifiableObjectMacro(PropagationImage, PropagationImageType);
105 void
106 Update() override
107 {}
108
110 void
112
114 void
116 {}
117
119 void
120 UpdatePixel(const LevelSetInputIndexType & itkNotUsed(iP),
121 const LevelSetOutputRealType & itkNotUsed(oldValue),
122 const LevelSetOutputRealType & itkNotUsed(newValue)) override
123 {}
124
125protected:
127
129
131
134 LevelSetOutputRealType
136
141 Value(const LevelSetInputIndexType & iP) override;
143 Value(const LevelSetInputIndexType & iP, const LevelSetDataType & iData) override;
145};
146
147} // namespace itk
148
149#ifndef ITK_MANUAL_INSTANTIATION
150# include "itkLevelSetEquationPropagationTerm.hxx"
151#endif
152
153#endif
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
itk::Size< VDimension > RadiusType
ConstNeighborhoodIterator< InputImageType, DefaultBoundaryConditionType > NeighborhoodType
LevelSetOutputRealType Value(const LevelSetInputIndexType &iP) override
typename LevelSetContainerType::OutputRealType LevelSetOutputRealType
Vector< LevelSetOutputRealType, Self::ImageDimension > NeighborhoodScalesType
LevelSetEquationTermBase< TInput, TLevelSetContainer > Superclass
void UpdatePixel(const LevelSetInputIndexType &iP, const LevelSetOutputRealType &oldValue, const LevelSetOutputRealType &newValue) override
typename LevelSetContainerType::LevelSetDataType LevelSetDataType
~LevelSetEquationPropagationTerm() override=default
ZeroFluxNeumannBoundaryCondition< InputImageType > DefaultBoundaryConditionType
typename PropagationImageType::Pointer PropagationImagePointer
typename ConstNeighborhoodIterator< InputImageType >::RadiusType RadiusType
void Initialize(const LevelSetInputIndexType &) override
LevelSetOutputRealType Value(const LevelSetInputIndexType &iP, const LevelSetDataType &iData) override
typename LevelSetContainerType::InputIndexType LevelSetInputIndexType
LevelSetOutputRealType PropagationSpeed(const LevelSetInputIndexType &iP) const
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....