ITK  4.2.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< class TInput, // Input image or mesh
47  class TLevelSetContainer >
49  public LevelSetEquationTermBase< TInput, TLevelSetContainer >
50 {
51 public:
55  typedef LevelSetEquationTermBase< TInput,
56  TLevelSetContainer > Superclass;
58 
60  itkNewMacro( Self );
61 
65 
70 
81 
84 
86 
89 
90  itkSetMacro( Mean, InputPixelRealType );
91  itkGetMacro( Mean, InputPixelRealType );
92 
94  virtual void Update();
95 
97  virtual void InitializeParameters();
98 
100  virtual void Initialize( const LevelSetInputIndexType& iP );
101 
103  virtual void ComputeProduct( const LevelSetInputIndexType& iP,
104  LevelSetOutputRealType& prod );
105 
110  {}
111 
113  virtual void UpdatePixel( const LevelSetInputIndexType& iP,
114  const LevelSetOutputRealType & oldValue,
115  const LevelSetOutputRealType & newValue );
116 
117 protected:
119 
121 
125 
129  const LevelSetDataType& iData );
130 
132  void Accumulate( const InputPixelType& iPix,
133  const LevelSetOutputRealType& iH );
134 
138 
139 private:
140  LevelSetEquationChanAndVeseInternalTerm( const Self& ); // purposely not implemented
141  void operator = ( const Self& ); // purposely not implemented
142 };
143 
144 }
145 #ifndef ITK_MANUAL_INSTANTIATION
146 #include "itkLevelSetEquationChanAndVeseInternalTerm.hxx"
147 #endif
148 
149 #endif
150