ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkLevelSetEquationPropagationTerm.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 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 >
50  public LevelSetEquationTermBase< TInput, TLevelSetContainer >
51 {
52 public:
58 
60  itkNewMacro( Self );
61 
63  itkTypeMacro( LevelSetEquationPropagationTerm,
65 
70 
82 
85 
86  itkStaticConstMacro(ImageDimension, unsigned int, InputImageType::ImageDimension);
87 
88  typedef TPropagationImage PropagationImageType;
89  typedef typename PropagationImageType::Pointer PropagationImagePointer;
90 
95 
97 
101  itkSetObjectMacro( PropagationImage, PropagationImageType );
102  itkGetModifiableObjectMacro(PropagationImage, PropagationImageType );
104 
106  virtual void Update() ITK_OVERRIDE;
107 
109  virtual void InitializeParameters() ITK_OVERRIDE;
110 
112  virtual void Initialize( const LevelSetInputIndexType& ) ITK_OVERRIDE;
113 
115  virtual void UpdatePixel( const LevelSetInputIndexType& iP,
116  const LevelSetOutputRealType& oldValue,
117  const LevelSetOutputRealType& newValue ) ITK_OVERRIDE;
118 
119 protected:
121 
122  virtual ~LevelSetEquationPropagationTerm();
123 
125 
129 
132  virtual LevelSetOutputRealType Value( const LevelSetInputIndexType& iP ) ITK_OVERRIDE;
134  const LevelSetDataType& iData ) ITK_OVERRIDE;
136 
137 private:
138  LevelSetEquationPropagationTerm( const Self& ); // purposely not implemented
139  void operator = ( const Self& ); // purposely not implemented
140 };
141 
142 }
143 
144 #ifndef ITK_MANUAL_INSTANTIATION
145 #include "itkLevelSetEquationPropagationTerm.hxx"
146 #endif
147 
148 #endif
Superclass::LevelSetGradientType LevelSetGradientType
Superclass::LevelSetOutputRealType LevelSetOutputRealType
Light weight base class for most itk classes.
virtual LevelSetOutputRealType Value(const LevelSetInputIndexType &iP) override
virtual void Update() override
Superclass::LevelSetInputIndexType LevelSetInputIndexType
Superclass::LevelSetContainerPointer LevelSetContainerPointer
virtual void Initialize(const LevelSetInputIndexType &) override
HeavisideStepFunctionBase< LevelSetOutputRealType, LevelSetOutputRealType > HeavisideType
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.
Derived class to represents a propagation term in the level-set evolution PDE.
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
virtual void UpdatePixel(const LevelSetInputIndexType &iP, const LevelSetOutputRealType &oldValue, const LevelSetOutputRealType &newValue) override
ConstNeighborhoodIterator< InputImageType >::RadiusType RadiusType
LevelSetEquationTermBase< TInput, TLevelSetContainer > Superclass
LevelSetContainerType::LevelSetIdentifierType LevelSetIdentifierType
ConstNeighborhoodIterator< InputImageType, DefaultBoundaryConditionType > NeighborhoodType
Superclass::HeavisideConstPointer HeavisideConstPointer
Vector< LevelSetOutputRealType, itkGetStaticConstMacro(ImageDimension) > NeighborhoodScalesType
Superclass::LevelSetIdentifierType LevelSetIdentifierType
Superclass::LevelSetOutputPixelType LevelSetOutputPixelType
ZeroFluxNeumannBoundaryCondition< InputImageType > DefaultBoundaryConditionType
LevelSetOutputRealType PropagationSpeed(const LevelSetInputIndexType &iP) const
virtual void InitializeParameters() override
Superclass::LevelSetContainerType LevelSetContainerType