ITK
4.3.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Segmentation
LevelSetsv4
include
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
22
#include "
itkLevelSetEquationTermBase.h
"
23
#include "
itkZeroFluxNeumannBoundaryCondition.h
"
24
#include "
itkConstNeighborhoodIterator.h
"
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
TPropagationImage = TInput >
49
class
LevelSetEquationPropagationTerm
:
50
public
LevelSetEquationTermBase
< TInput, TLevelSetContainer >
51
{
52
public
:
53
typedef
LevelSetEquationPropagationTerm
Self
;
54
typedef
SmartPointer< Self >
Pointer
;
55
typedef
SmartPointer< const Self >
ConstPointer
;
56
typedef
LevelSetEquationTermBase< TInput, TLevelSetContainer >
57
Superclass
;
58
60
itkNewMacro(
Self
);
61
63
itkTypeMacro(
LevelSetEquationPropagationTerm
,
64
LevelSetEquationTermBase
);
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
typedef
typename
Superclass::LevelSetDataType
LevelSetDataType
;
82
83
typedef
typename
Superclass::HeavisideType
HeavisideType
;
84
typedef
typename
Superclass::HeavisideConstPointer
HeavisideConstPointer
;
85
86
itkStaticConstMacro(
ImageDimension
,
unsigned
int
, InputImageType::ImageDimension);
87
88
typedef
TPropagationImage
PropagationImageType
;
89
typedef
typename
PropagationImageType::Pointer
PropagationImagePointer
;
90
92
typedef
ZeroFluxNeumannBoundaryCondition< InputImageType >
DefaultBoundaryConditionType
;
93
typedef
typename
ConstNeighborhoodIterator< InputImageType >::RadiusType
RadiusType
;
94
typedef
ConstNeighborhoodIterator< InputImageType, DefaultBoundaryConditionType >
NeighborhoodType
;
95
96
typedef
Vector< LevelSetOutputRealType, itkGetStaticConstMacro(ImageDimension) >
NeighborhoodScalesType
;
97
101
itkSetObjectMacro( PropagationImage,
PropagationImageType
);
102
itkGetObjectMacro( PropagationImage,
PropagationImageType
);
104
106
virtual
void
Update
();
107
109
virtual
void
InitializeParameters
();
110
112
virtual
void
Initialize
(
const
LevelSetInputIndexType
& );
113
115
virtual
void
UpdatePixel
(
const
LevelSetInputIndexType
& iP,
116
const
LevelSetOutputRealType
& oldValue,
117
const
LevelSetOutputRealType
& newValue );
118
119
protected
:
120
LevelSetEquationPropagationTerm
();
121
122
virtual
~LevelSetEquationPropagationTerm
();
123
124
PropagationImagePointer
m_PropagationImage
;
125
128
LevelSetOutputRealType
PropagationSpeed
(
const
LevelSetInputIndexType
& iP )
const
;
129
132
virtual
LevelSetOutputRealType
Value
(
const
LevelSetInputIndexType
& iP );
133
virtual
LevelSetOutputRealType
Value
(
const
LevelSetInputIndexType
& iP,
134
const
LevelSetDataType
& iData );
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
149
Generated on Sun Dec 9 2012 01:17:23 for ITK by
1.8.2