ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkLevelSetEquationCurvatureTerm.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkLevelSetEquationCurvatureTerm_h
20 #define itkLevelSetEquationCurvatureTerm_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 TCurvatureImage = TInput >
49 class ITK_TEMPLATE_EXPORT LevelSetEquationCurvatureTerm :
50  public LevelSetEquationTermBase< TInput, TLevelSetContainer >
51 {
52 public:
59 
61  itkNewMacro( Self );
62 
64  itkTypeMacro( LevelSetEquationCurvatureTerm,
66 
67  typedef typename Superclass::InputImageType InputImageType;
68  typedef typename Superclass::InputImagePointer InputImagePointer;
69  typedef typename Superclass::InputPixelType InputPixelType;
70  typedef typename Superclass::InputPixelRealType InputPixelRealType;
71 
72  typedef typename Superclass::LevelSetContainerType LevelSetContainerType;
73  typedef typename Superclass::LevelSetContainerPointer LevelSetContainerPointer;
74  typedef typename Superclass::LevelSetType LevelSetType;
75  typedef typename Superclass::LevelSetPointer LevelSetPointer;
76  typedef typename Superclass::LevelSetOutputPixelType LevelSetOutputPixelType;
77  typedef typename Superclass::LevelSetOutputRealType LevelSetOutputRealType;
78  typedef typename Superclass::LevelSetInputIndexType LevelSetInputIndexType;
79  typedef typename Superclass::LevelSetGradientType LevelSetGradientType;
80  typedef typename Superclass::LevelSetHessianType LevelSetHessianType;
81  typedef typename Superclass::LevelSetIdentifierType LevelSetIdentifierType;
82 
83  typedef typename Superclass::HeavisideType HeavisideType;
84  typedef typename Superclass::HeavisideConstPointer HeavisideConstPointer;
85 
86  typedef typename Superclass::LevelSetDataType LevelSetDataType;
87 
88  itkStaticConstMacro(ImageDimension, unsigned int, InputImageType::ImageDimension);
89 
90  typedef TCurvatureImage CurvatureImageType;
91  typedef typename CurvatureImageType::Pointer CurvatureImagePointer;
92 
96  void SetCurvatureImage( CurvatureImageType* CurvatureImage );
97  itkGetModifiableObjectMacro(CurvatureImage, CurvatureImageType );
99 
100  itkSetMacro( UseCurvatureImage, bool );
101  itkGetMacro( UseCurvatureImage, bool );
102  itkBooleanMacro( UseCurvatureImage );
103 
108 
110 
112  virtual void Update() ITK_OVERRIDE;
113 
115  virtual void InitializeParameters() ITK_OVERRIDE;
116 
118  virtual void Initialize( const LevelSetInputIndexType& ) ITK_OVERRIDE;
119 
121  virtual void UpdatePixel( const LevelSetInputIndexType& iP,
122  const LevelSetOutputRealType& oldValue,
123  const LevelSetOutputRealType& newValue ) ITK_OVERRIDE;
124 
125 protected:
127 
128  virtual ~LevelSetEquationCurvatureTerm() ITK_OVERRIDE;
129 
132  virtual LevelSetOutputRealType Value( const LevelSetInputIndexType& iP ) ITK_OVERRIDE;
133 
136  virtual LevelSetOutputRealType Value( const LevelSetInputIndexType& iP, const LevelSetDataType& iData ) ITK_OVERRIDE;
137 
138  LevelSetOutputRealType m_NeighborhoodScales[ImageDimension];
139 
140  CurvatureImagePointer m_CurvatureImage;
141 
142  bool m_UseCurvatureImage;
143 
144 private:
145  ITK_DISALLOW_COPY_AND_ASSIGN(LevelSetEquationCurvatureTerm);
146 };
147 
148 }
149 
150 #ifndef ITK_MANUAL_INSTANTIATION
151 #include "itkLevelSetEquationCurvatureTerm.hxx"
152 #endif
153 
154 #endif
ConstNeighborhoodIterator< InputImageType, DefaultBoundaryConditionType > NeighborhoodType
Light weight base class for most itk classes.
Superclass::LevelSetOutputRealType LevelSetOutputRealType
Superclass::InputPixelRealType InputPixelRealType
Superclass::LevelSetIdentifierType LevelSetIdentifierType
Superclass::LevelSetContainerPointer LevelSetContainerPointer
LevelSetEquationTermBase< TInput, TLevelSetContainer > Superclass
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
Abstract class to represents a term in the level-set evolution PDE.
Superclass::LevelSetOutputPixelType LevelSetOutputPixelType
Superclass::LevelSetInputIndexType LevelSetInputIndexType
Superclass::HeavisideConstPointer HeavisideConstPointer
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
Vector< LevelSetOutputRealType, itkGetStaticConstMacro(ImageDimension) > NeighborhoodScalesType
Superclass::LevelSetContainerType LevelSetContainerType
Superclass::LevelSetHessianType LevelSetHessianType
Derived class to represents a curvature term in the level-set evolution PDE.
ConstNeighborhoodIterator< InputImageType >::RadiusType RadiusType
Superclass::LevelSetGradientType LevelSetGradientType
ZeroFluxNeumannBoundaryCondition< InputImageType > DefaultBoundaryConditionType