ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkLevelSetEquationChanAndVeseInternalTerm.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 itkLevelSetEquationChanAndVeseInternalTerm_h
20 #define itkLevelSetEquationChanAndVeseInternalTerm_h
21 
23 
24 namespace itk
25 {
46 template< typename TInput, // Input image or mesh
47  typename TLevelSetContainer >
48 class ITK_TEMPLATE_EXPORT LevelSetEquationChanAndVeseInternalTerm :
49  public LevelSetEquationTermBase< TInput, TLevelSetContainer >
50 {
51 public:
55  typedef LevelSetEquationTermBase< TInput,
56  TLevelSetContainer > Superclass;
58 
60  itkNewMacro( Self );
61 
65 
66  typedef typename Superclass::InputImageType InputImageType;
67  typedef typename Superclass::InputImagePointer InputImagePointer;
68  typedef typename Superclass::InputPixelType InputPixelType;
69  typedef typename Superclass::InputPixelRealType InputPixelRealType;
70 
71  typedef typename Superclass::LevelSetContainerType LevelSetContainerType;
72  typedef typename Superclass::LevelSetContainerPointer LevelSetContainerPointer;
73  typedef typename Superclass::LevelSetType LevelSetType;
74  typedef typename Superclass::LevelSetPointer LevelSetPointer;
75  typedef typename Superclass::LevelSetOutputPixelType LevelSetOutputPixelType;
76  typedef typename Superclass::LevelSetOutputRealType LevelSetOutputRealType;
77  typedef typename Superclass::LevelSetInputIndexType LevelSetInputIndexType;
78  typedef typename Superclass::LevelSetGradientType LevelSetGradientType;
79  typedef typename Superclass::LevelSetHessianType LevelSetHessianType;
80  typedef typename Superclass::LevelSetIdentifierType LevelSetIdentifierType;
81 
82  typedef typename Superclass::HeavisideType HeavisideType;
83  typedef typename Superclass::HeavisideConstPointer HeavisideConstPointer;
84 
85  typedef typename Superclass::LevelSetDataType LevelSetDataType;
86 
87  typedef typename Superclass::DomainMapImageFilterType DomainMapImageFilterType;
88  typedef typename Superclass::CacheImageType CacheImageType;
89 
90  itkSetMacro( Mean, InputPixelRealType );
91  itkGetMacro( Mean, InputPixelRealType );
92 
94  virtual void Update() ITK_OVERRIDE;
95 
97  virtual void InitializeParameters() ITK_OVERRIDE;
98 
100  virtual void Initialize( const LevelSetInputIndexType& inputIndex ) ITK_OVERRIDE;
101 
103  virtual void ComputeProduct( const LevelSetInputIndexType& inputPixel,
104  LevelSetOutputRealType& prod );
105 
108  virtual void ComputeProductTerm( const LevelSetInputIndexType& ,
110  {}
111 
113  virtual void UpdatePixel( const LevelSetInputIndexType& inputPixel,
114  const LevelSetOutputRealType & oldValue,
115  const LevelSetOutputRealType & newValue ) ITK_OVERRIDE;
116 
117 protected:
119 
120  virtual ~LevelSetEquationChanAndVeseInternalTerm() ITK_OVERRIDE;
121 
124  virtual LevelSetOutputRealType Value( const LevelSetInputIndexType& inputPixel ) ITK_OVERRIDE;
125 
128  virtual LevelSetOutputRealType Value( const LevelSetInputIndexType& inputPixel,
129  const LevelSetDataType& data ) ITK_OVERRIDE;
130 
132  void Accumulate( const InputPixelType& inputPixel,
133  const LevelSetOutputRealType& heavisideValue );
134 
136  InputPixelRealType m_TotalValue;
138 
139 private:
140  ITK_DISALLOW_COPY_AND_ASSIGN(LevelSetEquationChanAndVeseInternalTerm);
141 };
142 
143 }
144 #ifndef ITK_MANUAL_INSTANTIATION
145 #include "itkLevelSetEquationChanAndVeseInternalTerm.hxx"
146 #endif
147 
148 #endif
Light weight base class for most itk classes.
Class to represent the internal energy Chan And Vese term.
Abstract class to represents a term in the level-set evolution PDE.
LevelSetEquationTermBase< TInput, TLevelSetContainer > Superclass