ITK  5.4.0
Insight Toolkit
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 
28 namespace itk
29 {
46 template <typename TInput, // Input image or mesh
47  typename TLevelSetContainer,
48  typename TPropagationImage = TInput>
49 class ITK_TEMPLATE_EXPORT LevelSetEquationPropagationTerm : public LevelSetEquationTermBase<TInput, TLevelSetContainer>
50 {
51 public:
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 
70  using typename Superclass::LevelSetContainerType;
71  using typename Superclass::LevelSetContainerPointer;
72  using typename Superclass::LevelSetType;
73  using typename Superclass::LevelSetPointer;
74  using typename Superclass::LevelSetOutputPixelType;
75  using typename Superclass::LevelSetOutputRealType;
76  using typename Superclass::LevelSetInputIndexType;
77  using typename Superclass::LevelSetGradientType;
78  using typename Superclass::LevelSetHessianType;
79  using typename Superclass::LevelSetIdentifierType;
80  using typename Superclass::LevelSetDataType;
81 
82  using typename Superclass::HeavisideType;
83  using typename Superclass::HeavisideConstPointer;
84 
85  static constexpr unsigned int ImageDimension = InputImageType::ImageDimension;
86 
87  using PropagationImageType = TPropagationImage;
89 
94 
96 
100  itkSetObjectMacro(PropagationImage, PropagationImageType);
101  itkGetModifiableObjectMacro(PropagationImage, PropagationImageType);
105  void
106  Update() override;
107 
109  void
110  InitializeParameters() override;
111 
113  void
114  Initialize(const LevelSetInputIndexType &) override;
115 
117  void
118  UpdatePixel(const LevelSetInputIndexType & iP,
119  const LevelSetOutputRealType & oldValue,
120  const LevelSetOutputRealType & newValue) override;
121 
122 protected:
124 
125  ~LevelSetEquationPropagationTerm() override = default;
126 
127  PropagationImagePointer m_PropagationImage{};
128 
131  LevelSetOutputRealType
132  PropagationSpeed(const LevelSetInputIndexType & iP) const;
133 
136  LevelSetOutputRealType
137  Value(const LevelSetInputIndexType & iP) override;
138  LevelSetOutputRealType
139  Value(const LevelSetInputIndexType & iP, const LevelSetDataType & iData) override;
140 };
143 } // namespace itk
144 
145 #ifndef ITK_MANUAL_INSTANTIATION
146 # include "itkLevelSetEquationPropagationTerm.hxx"
147 #endif
148 
149 #endif
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itkConstNeighborhoodIterator.h
itk::LevelSetEquationPropagationTerm::PropagationImagePointer
typename PropagationImageType::Pointer PropagationImagePointer
Definition: itkLevelSetEquationPropagationTerm.h:88
itk::Size
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition: itkSize.h:71
itk::Vector
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
itk::SmartPointer< Self >
itk::LevelSetEquationPropagationTerm::RadiusType
typename ConstNeighborhoodIterator< InputImageType >::RadiusType RadiusType
Definition: itkLevelSetEquationPropagationTerm.h:92
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itk::LevelSetEquationTermBase< TInput, TLevelSetContainer >::LevelSetInputIndexType
typename LevelSetContainerType::InputIndexType LevelSetInputIndexType
Definition: itkLevelSetEquationTermBase.h:76
itk::LevelSetEquationTermBase
Abstract class to represents a term in the level-set evolution PDE.
Definition: itkLevelSetEquationTermBase.h:49
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::ConstNeighborhoodIterator
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
Definition: itkConstNeighborhoodIterator.h:51
itkVector.h
itk::LevelSetEquationPropagationTerm
Derived class to represents a propagation term in the level-set evolution PDE.
Definition: itkLevelSetEquationPropagationTerm.h:49
itkLevelSetEquationTermBase.h
itk::ZeroFluxNeumannBoundaryCondition< InputImageType >
itk::LevelSetEquationTermBase< TInput, TLevelSetContainer >::LevelSetOutputRealType
typename LevelSetContainerType::OutputRealType LevelSetOutputRealType
Definition: itkLevelSetEquationTermBase.h:75
itkZeroFluxNeumannBoundaryCondition.h
itk::LevelSetEquationPropagationTerm::PropagationImageType
TPropagationImage PropagationImageType
Definition: itkLevelSetEquationPropagationTerm.h:87