ITK  4.2.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< class TInput, // Input image or mesh
47  class TLevelSetContainer,
48  class TCurvatureImage = TInput >
50  public LevelSetEquationTermBase< TInput, TLevelSetContainer >
51 {
52 public:
59 
61  itkNewMacro( Self );
62 
64  itkTypeMacro( LevelSetEquationCurvatureTerm,
66 
71 
82 
85 
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  itkGetObjectMacro( CurvatureImage, CurvatureImageType );
99 
100  itkSetMacro( UseCurvatureImage, bool );
101  itkGetMacro( UseCurvatureImage, bool );
102  itkBooleanMacro( UseCurvatureImage );
103 
108 
110 
112  virtual void Update();
113 
115  virtual void InitializeParameters();
116 
118  virtual void Initialize( const LevelSetInputIndexType& );
119 
121  virtual void UpdatePixel( const LevelSetInputIndexType& iP,
122  const LevelSetOutputRealType& oldValue,
123  const LevelSetOutputRealType& newValue );
124 
125 protected:
127 
129 
133 
136  virtual LevelSetOutputRealType Value( const LevelSetInputIndexType& iP, const LevelSetDataType& iData );
137 
139 
141 
143 
144 private:
145  LevelSetEquationCurvatureTerm( const Self& ); // purposely not implemented
146  void operator = ( const Self& ); // purposely not implemented
147 };
148 
149 }
150 
151 #ifndef ITK_MANUAL_INSTANTIATION
152 #include "itkLevelSetEquationCurvatureTerm.hxx"
153 #endif
154 
155 #endif
156