ITK
4.3.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Filtering
AnisotropicSmoothing
include
itkCurvatureNDAnisotropicDiffusionFunction.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 __itkCurvatureNDAnisotropicDiffusionFunction_h
19
#define __itkCurvatureNDAnisotropicDiffusionFunction_h
20
21
#include "
itkScalarAnisotropicDiffusionFunction.h
"
22
#include "
itkNeighborhoodAlgorithm.h
"
23
#include "
itkNeighborhoodInnerProduct.h
"
24
#include "
itkDerivativeOperator.h
"
25
26
namespace
itk
27
{
74
template
<
class
TImage >
75
class
ITK_EXPORT
CurvatureNDAnisotropicDiffusionFunction
:
76
public
ScalarAnisotropicDiffusionFunction
< TImage >
77
{
78
public
:
79
81
typedef
CurvatureNDAnisotropicDiffusionFunction
Self
;
82
typedef
ScalarAnisotropicDiffusionFunction< TImage >
Superclass
;
83
typedef
SmartPointer< Self >
Pointer
;
84
typedef
SmartPointer< const Self >
ConstPointer
;
85
87
itkNewMacro(
Self
);
88
90
itkTypeMacro(
CurvatureNDAnisotropicDiffusionFunction
,
91
ScalarAnisotropicDiffusionFunction
);
92
94
typedef
typename
Superclass::ImageType
ImageType
;
95
typedef
typename
Superclass::PixelType
PixelType
;
96
typedef
typename
Superclass::TimeStepType
TimeStepType
;
97
typedef
typename
Superclass::RadiusType
RadiusType
;
98
typedef
typename
Superclass::NeighborhoodType
NeighborhoodType
;
99
typedef
typename
Superclass::FloatOffsetType
FloatOffsetType
;
100
101
typedef
typename
NeighborhoodType::SizeValueType
NeighborhoodSizeValueType
;
102
104
itkStaticConstMacro(ImageDimension,
unsigned
int
, Superclass::ImageDimension);
105
107
virtual
PixelType
ComputeUpdate(
const
NeighborhoodType
& neighborhood,
108
void
*globalData,
109
const
FloatOffsetType
& offset =
FloatOffsetType
(0.0)
110
);
111
113
virtual
void
InitializeIteration()
114
{
115
m_K =
static_cast<
PixelType
>
( this->GetAverageGradientMagnitudeSquared()
116
* this->GetConductanceParameter()
117
* this->GetConductanceParameter() * -2.0f );
118
}
119
120
protected
:
121
CurvatureNDAnisotropicDiffusionFunction
();
122
~CurvatureNDAnisotropicDiffusionFunction
() {}
123
124
private
:
125
CurvatureNDAnisotropicDiffusionFunction
(
const
Self &);
//purposely not
126
// implemented
127
void
operator=(
const
Self &);
//purposely not
128
129
// implemented
130
132
NeighborhoodInnerProduct< ImageType >
m_InnerProduct
;
133
135
std::slice x_slice[ImageDimension];
136
std::slice xa_slice[ImageDimension][ImageDimension];
137
std::slice xd_slice[ImageDimension][ImageDimension];
138
140
DerivativeOperator< PixelType, itkGetStaticConstMacro(ImageDimension) >
dx_op
;
141
143
PixelType
m_K
;
144
146
static
double
m_MIN_NORM
;
147
148
NeighborhoodSizeValueType
m_Center
;
149
NeighborhoodSizeValueType
m_Stride[ImageDimension];
150
};
151
}
// end namespace itk
152
153
#ifndef ITK_MANUAL_INSTANTIATION
154
#include "itkCurvatureNDAnisotropicDiffusionFunction.hxx"
155
#endif
156
157
#endif
158
Generated on Sun Dec 9 2012 00:54:56 for ITK by
1.8.2