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
LevelSets
include
itkNormalVectorFunctionBase.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
#ifndef __itkNormalVectorFunctionBase_h
19
#define __itkNormalVectorFunctionBase_h
20
21
#include "
itkFiniteDifferenceSparseImageFunction.h
"
22
23
namespace
itk
24
{
51
template
<
class
TSparseImageType >
52
class
ITK_EXPORT
NormalVectorFunctionBase
:
53
public
FiniteDifferenceSparseImageFunction
< TSparseImageType >
54
{
55
public
:
57
typedef
NormalVectorFunctionBase
Self
;
58
typedef
FiniteDifferenceSparseImageFunction< TSparseImageType >
Superclass
;
59
typedef
SmartPointer< Self >
Pointer
;
60
typedef
SmartPointer< const Self >
ConstPointer
;
61
63
itkTypeMacro(
NormalVectorFunctionBase
,
FiniteDifferenceSparseImageFunction
);
64
66
itkStaticConstMacro(ImageDimension,
unsigned
int
, Superclass::ImageDimension);
67
69
typedef
typename
Superclass::TimeStepType
TimeStepType
;
70
typedef
typename
Superclass::RadiusType
RadiusType
;
71
typedef
typename
Superclass::NeighborhoodType
NeighborhoodType
;
72
typedef
typename
Superclass::FloatOffsetType
FloatOffsetType
;
73
typedef
typename
Superclass::IndexType
IndexType
;
74
typedef
typename
Superclass::SparseImageType
SparseImageType
;
75
77
typedef
typename
SparseImageType::NodeType
NodeType
;
78
80
typedef
typename
NodeType::NodeValueType
NodeValueType
;
81
83
typedef
typename
NodeType::NodeDataType
NormalVectorType
;
84
86
virtual
void
*
GetGlobalDataPointer
()
const
{
return
0; }
87
virtual
void
ReleaseGlobalDataPointer
(
void
*)
const
{}
89
91
virtual
TimeStepType
ComputeGlobalTimeStep(
void
*)
const
92
{
return
m_TimeStep; }
93
95
void
SetTimeStep(
const
TimeStepType
& ts)
96
{ m_TimeStep = ts; }
97
99
TimeStepType
GetTimeStep()
const
100
{
return
m_TimeStep; }
101
102
protected
:
103
NormalVectorFunctionBase
();
104
~NormalVectorFunctionBase
() {}
105
virtual
void
PrintSelf(std::ostream & os,
Indent
indent)
const
;
106
107
private
:
109
TimeStepType
m_TimeStep
;
110
111
NormalVectorFunctionBase
(
const
Self
&);
//purposely not implemented
112
void
operator=(
const
Self
&);
//purposely not implemented
113
};
114
}
// end namespace itk
115
116
#ifndef ITK_MANUAL_INSTANTIATION
117
#include "itkNormalVectorFunctionBase.hxx"
118
#endif
119
120
#endif
121
Generated on Sun Dec 9 2012 01:21:16 for ITK by
1.8.2