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
itkLevelSetEquationLaplacianTerm.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 __itkLevelSetEquationLaplacianTerm_h
20
#define __itkLevelSetEquationLaplacianTerm_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
{
45
template
<
class
TInput,
// Input image or mesh
46
class
TLevelSetContainer >
47
class
LevelSetEquationLaplacianTerm
:
48
public
LevelSetEquationTermBase
< TInput, TLevelSetContainer >
49
{
50
public
:
51
typedef
LevelSetEquationLaplacianTerm
Self
;
52
typedef
SmartPointer< Self >
Pointer
;
53
typedef
SmartPointer< const Self >
ConstPointer
;
54
typedef
LevelSetEquationTermBase< TInput, TLevelSetContainer >
55
Superclass
;
56
58
itkNewMacro(
Self
);
59
61
itkTypeMacro(
LevelSetEquationLaplacianTerm
,
62
LevelSetEquationTermBase
);
63
64
typedef
typename
Superclass::InputImageType
InputImageType
;
65
typedef
typename
Superclass::InputImagePointer
InputImagePointer
;
66
typedef
typename
Superclass::InputPixelType
InputPixelType
;
67
typedef
typename
Superclass::InputPixelRealType
InputPixelRealType
;
68
69
typedef
typename
Superclass::LevelSetContainerType
LevelSetContainerType
;
70
typedef
typename
Superclass::LevelSetContainerPointer
LevelSetContainerPointer
;
71
typedef
typename
Superclass::LevelSetType
LevelSetType
;
72
typedef
typename
Superclass::LevelSetPointer
LevelSetPointer
;
73
typedef
typename
Superclass::LevelSetOutputPixelType
LevelSetOutputPixelType
;
74
typedef
typename
Superclass::LevelSetOutputRealType
LevelSetOutputRealType
;
75
typedef
typename
Superclass::LevelSetInputIndexType
LevelSetInputIndexType
;
76
typedef
typename
Superclass::LevelSetGradientType
LevelSetGradientType
;
77
typedef
typename
Superclass::LevelSetHessianType
LevelSetHessianType
;
78
typedef
typename
Superclass::LevelSetIdentifierType
LevelSetIdentifierType
;
79
80
typedef
typename
Superclass::HeavisideType
HeavisideType
;
81
typedef
typename
Superclass::HeavisideConstPointer
HeavisideConstPointer
;
82
83
typedef
typename
Superclass::LevelSetDataType
LevelSetDataType
;
84
85
itkStaticConstMacro(
ImageDimension
,
unsigned
int
, InputImageType::ImageDimension);
86
88
typedef
ZeroFluxNeumannBoundaryCondition< InputImageType >
DefaultBoundaryConditionType
;
89
typedef
typename
ConstNeighborhoodIterator< InputImageType >::RadiusType
RadiusType
;
90
typedef
ConstNeighborhoodIterator< InputImageType, DefaultBoundaryConditionType >
NeighborhoodType
;
91
92
typedef
Vector< LevelSetOutputRealType, itkGetStaticConstMacro(ImageDimension) >
NeighborhoodScalesType
;
93
95
virtual
void
Update
();
96
98
virtual
void
InitializeParameters
();
99
101
virtual
void
Initialize
(
const
LevelSetInputIndexType
& );
102
104
virtual
void
UpdatePixel
(
const
LevelSetInputIndexType
& iP,
105
const
LevelSetOutputRealType
& oldValue,
106
const
LevelSetOutputRealType
& newValue );
107
108
protected
:
109
LevelSetEquationLaplacianTerm
();
110
111
virtual
~LevelSetEquationLaplacianTerm
();
112
115
LevelSetOutputRealType
LaplacianSpeed
(
const
LevelSetInputIndexType
& iP )
const
;
116
119
virtual
LevelSetOutputRealType
Value
(
const
LevelSetInputIndexType
& iP );
120
123
virtual
LevelSetOutputRealType
Value
(
const
LevelSetInputIndexType
& iP,
124
const
LevelSetDataType
& iData );
125
126
private
:
127
LevelSetEquationLaplacianTerm
(
const
Self
& );
// purposely not implemented
128
void
operator =
(
const
Self
& );
// purposely not implemented
129
};
130
131
}
132
#ifndef ITK_MANUAL_INSTANTIATION
133
#include "itkLevelSetEquationLaplacianTerm.hxx"
134
#endif
135
#endif
136
Generated on Sun Dec 9 2012 01:17:18 for ITK by
1.8.2