ITK
4.4.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Filtering
CurvatureFlow
include
itkBinaryMinMaxCurvatureFlowFunction.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 __itkBinaryMinMaxCurvatureFlowFunction_h
19
#define __itkBinaryMinMaxCurvatureFlowFunction_h
20
21
#include "
itkMinMaxCurvatureFlowFunction.h
"
22
#include "
itkMacro.h
"
23
24
namespace
itk
25
{
41
template
<
class
TImage >
42
class
ITK_EXPORT
BinaryMinMaxCurvatureFlowFunction
:
43
public
MinMaxCurvatureFlowFunction
< TImage >
44
{
45
public
:
47
typedef
BinaryMinMaxCurvatureFlowFunction
Self
;
48
typedef
MinMaxCurvatureFlowFunction< TImage >
Superclass
;
49
typedef
SmartPointer< Self >
Pointer
;
50
typedef
SmartPointer< const Self >
ConstPointer
;
51
53
itkNewMacro(
Self
);
54
56
itkTypeMacro(
BinaryMinMaxCurvatureFlowFunction
,
57
MinMaxCurvatureFlowFunction
);
58
60
typedef
typename
Superclass::PixelType
PixelType
;
61
typedef
typename
Superclass::RadiusType
RadiusType
;
62
typedef
typename
Superclass::NeighborhoodType
NeighborhoodType
;
63
typedef
typename
Superclass::FloatOffsetType
FloatOffsetType
;
64
typedef
typename
Superclass::ImageType
ImageType
;
65
67
itkStaticConstMacro(ImageDimension,
unsigned
int
, Superclass::ImageDimension);
68
70
void
SetThreshold(
const
double
thresh)
71
{ m_Threshold = thresh; }
72
const
double
& GetThreshold()
const
73
{
return
m_Threshold; }
75
78
virtual
PixelType ComputeUpdate(
const
NeighborhoodType & neighborhood,
79
void
*globalData,
80
const
FloatOffsetType & offset = FloatOffsetType(0.0)
81
);
82
83
protected
:
84
BinaryMinMaxCurvatureFlowFunction
();
85
~BinaryMinMaxCurvatureFlowFunction
() {}
86
87
private
:
88
BinaryMinMaxCurvatureFlowFunction
(
const
Self &);
//purposely not implemented
89
void
operator=(
const
Self &);
//purposely not implemented
90
91
double
m_Threshold
;
92
};
93
}
// end namespace itk
94
95
#ifndef ITK_MANUAL_INSTANTIATION
96
#include "itkBinaryMinMaxCurvatureFlowFunction.hxx"
97
#endif
98
99
#endif
100
Generated on Mon May 13 2013 00:44:25 for ITK by
1.8.3.1