Home
|
Main Page
|
Modules
|
Namespace List
|
Class Hierarchy
|
Alphabetical List
|
Data Structures
|
File List
|
Namespace Members
|
Data Fields
|
Globals
|
Related Pages
src
Components
Transforms
BSplineDeformableTransformWithDiffusion
itkDeformationVectorFieldTransform.h
Go to the documentation of this file.
1
/*======================================================================
2
3
This file is part of the elastix software.
4
5
Copyright (c) University Medical Center Utrecht. All rights reserved.
6
See src/CopyrightElastix.txt or http://elastix.isi.uu.nl/legal.php for
7
details.
8
9
This software is distributed WITHOUT ANY WARRANTY; without even
10
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11
PURPOSE. See the above copyright notices for more information.
12
13
======================================================================*/
14
#ifndef __itkDeformationVectorFieldTransform_h__
15
#define __itkDeformationVectorFieldTransform_h__
16
17
#include "
itkAdvancedBSplineDeformableTransform.h
"
18
19
namespace
itk
20
{
21
41
template
<
class
TScalarType =
double
,
unsigned
int
NDimensions = 3 >
42
class
DeformationVectorFieldTransform
:
43
public
AdvancedBSplineDeformableTransform
< TScalarType, NDimensions, 0 >
44
{
45
public
:
46
48
typedef
DeformationVectorFieldTransform
Self
;
49
typedef
AdvancedBSplineDeformableTransform
<
50
TScalarType, NDimensions, 0 >
Superclass
;
51
typedef
SmartPointer< Self >
Pointer
;
52
typedef
SmartPointer< const Self >
ConstPointer
;
53
55
itkNewMacro(
Self
);
56
58
itkTypeMacro(
DeformationVectorFieldTransform
,
AdvancedBSplineDeformableTransform
);
59
61
itkStaticConstMacro
( SpaceDimension,
unsigned
int
, NDimensions );
62
itkStaticConstMacro
( SplineOrder,
unsigned
int
, Superclass::SplineOrder );
63
65
typedef
typename
Superclass::ScalarType
ScalarType
;
66
typedef
typename
Superclass::ParametersType
ParametersType
;
67
typedef
typename
Superclass::JacobianType
JacobianType
;
68
typedef
typename
Superclass::InputVectorType
InputVectorType
;
69
typedef
typename
Superclass::OutputVectorType
OutputVectorType
;
70
typedef
typename
Superclass::InputCovariantVectorType
InputCovariantVectorType
;
71
typedef
typename
Superclass::OutputCovariantVectorType
OutputCovariantVectorType
;
72
typedef
typename
Superclass::InputVnlVectorType
InputVnlVectorType
;
73
typedef
typename
Superclass::OutputVnlVectorType
OutputVnlVectorType
;
74
typedef
typename
Superclass::InputPointType
InputPointType
;
75
typedef
typename
Superclass::OutputPointType
OutputPointType
;
76
78
typedef
typename
Superclass::PixelType
CoefficientPixelType
;
79
typedef
typename
Superclass::ImageType
CoefficientImageType
;
80
typedef
typename
Superclass::ImagePointer
CoefficientImagePointer
;
81
83
typedef
Vector<
float
,
84
itkGetStaticConstMacro( SpaceDimension ) >
CoefficientVectorPixelType
;
85
typedef
Image<
CoefficientVectorPixelType
,
86
itkGetStaticConstMacro( SpaceDimension ) >
CoefficientVectorImageType
;
87
typedef
typename
CoefficientVectorImageType::Pointer
CoefficientVectorImagePointer
;
88
98
virtual
void
SetCoefficientVectorImage
(
const
CoefficientVectorImageType
* vecImage );
99
106
virtual
void
GetCoefficientVectorImage
(
CoefficientVectorImagePointer
& vecImage )
const
;
107
108
protected
:
109
111
DeformationVectorFieldTransform
();
113
virtual
~DeformationVectorFieldTransform
();
114
115
private
:
116
118
DeformationVectorFieldTransform
(
const
Self
& );
// purposely not implemented
120
void
operator=
(
const
Self
& );
// purposely not implemented
121
123
CoefficientImagePointer
m_Images
[ SpaceDimension ];
124
125
};
126
127
}
// end namespace itk
128
129
#ifndef ITK_MANUAL_INSTANTIATION
130
#include "itkDeformationVectorFieldTransform.hxx"
131
#endif
132
133
#endif // end #ifndef __itkDeformationVectorFieldTransform_h__
itk::AdvancedBSplineDeformableTransform
Deformable transform using a B-spline representation.
Definition:
itkAdvancedBSplineDeformableTransform.h:130
itk::DeformationVectorFieldTransform::m_Images
CoefficientImagePointer m_Images[SpaceDimension]
Definition:
itkDeformationVectorFieldTransform.h:123
itk::DeformationVectorFieldTransform
An itk transform based on a DeformationVectorField.
Definition:
itkDeformationVectorFieldTransform.h:42
itk::DeformationVectorFieldTransform::OutputCovariantVectorType
Superclass::OutputCovariantVectorType OutputCovariantVectorType
Definition:
itkDeformationVectorFieldTransform.h:71
itk::DeformationVectorFieldTransform::SetCoefficientVectorImage
virtual void SetCoefficientVectorImage(const CoefficientVectorImageType *vecImage)
itk::DeformationVectorFieldTransform::InputVectorType
Superclass::InputVectorType InputVectorType
Definition:
itkDeformationVectorFieldTransform.h:68
itk::DeformationVectorFieldTransform::Pointer
SmartPointer< Self > Pointer
Definition:
itkDeformationVectorFieldTransform.h:51
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::ScalarType
Superclass::ScalarType ScalarType
Definition:
itkAdvancedTransform.h:106
itk::DeformationVectorFieldTransform::OutputVnlVectorType
Superclass::OutputVnlVectorType OutputVnlVectorType
Definition:
itkDeformationVectorFieldTransform.h:73
itk::DeformationVectorFieldTransform::ConstPointer
SmartPointer< const Self > ConstPointer
Definition:
itkDeformationVectorFieldTransform.h:52
itk::DeformationVectorFieldTransform::ParametersType
Superclass::ParametersType ParametersType
Definition:
itkDeformationVectorFieldTransform.h:66
itk::DeformationVectorFieldTransform::OutputPointType
Superclass::OutputPointType OutputPointType
Definition:
itkDeformationVectorFieldTransform.h:75
itk::DeformationVectorFieldTransform::CoefficientVectorPixelType
Vector< float, itkGetStaticConstMacro(SpaceDimension) > CoefficientVectorPixelType
Definition:
itkDeformationVectorFieldTransform.h:84
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputCovariantVectorType
Superclass::OutputCovariantVectorType OutputCovariantVectorType
Definition:
itkAdvancedTransform.h:116
itk::DeformationVectorFieldTransform::ScalarType
Superclass::ScalarType ScalarType
Definition:
itkDeformationVectorFieldTransform.h:65
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputVnlVectorType
Superclass::OutputVnlVectorType OutputVnlVectorType
Definition:
itkAdvancedTransform.h:118
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::ParametersType
Superclass::ParametersType ParametersType
Definition:
itkAdvancedTransform.h:107
float
itk::DeformationVectorFieldTransform::CoefficientImageType
Superclass::ImageType CoefficientImageType
Definition:
itkDeformationVectorFieldTransform.h:79
itk::DeformationVectorFieldTransform::Superclass
AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 > Superclass
Definition:
itkDeformationVectorFieldTransform.h:50
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputVnlVectorType
Superclass::InputVnlVectorType InputVnlVectorType
Definition:
itkAdvancedTransform.h:117
itk::AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 >::PixelType
Superclass::PixelType PixelType
Definition:
itkAdvancedBSplineDeformableTransform.h:182
itk::DeformationVectorFieldTransform::CoefficientPixelType
Superclass::PixelType CoefficientPixelType
Definition:
itkDeformationVectorFieldTransform.h:78
itk::DeformationVectorFieldTransform::CoefficientVectorImageType
Image< CoefficientVectorPixelType, itkGetStaticConstMacro(SpaceDimension) > CoefficientVectorImageType
Definition:
itkDeformationVectorFieldTransform.h:86
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputVectorType
Superclass::OutputVectorType OutputVectorType
Definition:
itkAdvancedTransform.h:112
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::JacobianType
Superclass::JacobianType JacobianType
Definition:
itkAdvancedTransform.h:110
itk::DeformationVectorFieldTransform::Self
DeformationVectorFieldTransform Self
Definition:
itkDeformationVectorFieldTransform.h:48
itk::DeformationVectorFieldTransform::OutputVectorType
Superclass::OutputVectorType OutputVectorType
Definition:
itkDeformationVectorFieldTransform.h:69
itk::DeformationVectorFieldTransform::~DeformationVectorFieldTransform
virtual ~DeformationVectorFieldTransform()
itk::DeformationVectorFieldTransform::InputPointType
Superclass::InputPointType InputPointType
Definition:
itkDeformationVectorFieldTransform.h:74
itk::AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 >::ImagePointer
Superclass::ImagePointer ImagePointer
Definition:
itkAdvancedBSplineDeformableTransform.h:184
itk::DeformationVectorFieldTransform::InputCovariantVectorType
Superclass::InputCovariantVectorType InputCovariantVectorType
Definition:
itkDeformationVectorFieldTransform.h:70
itk::DeformationVectorFieldTransform::CoefficientVectorImagePointer
CoefficientVectorImageType::Pointer CoefficientVectorImagePointer
Definition:
itkDeformationVectorFieldTransform.h:87
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputPointType
Superclass::InputPointType InputPointType
Definition:
itkAdvancedTransform.h:119
itk::DeformationVectorFieldTransform::InputVnlVectorType
Superclass::InputVnlVectorType InputVnlVectorType
Definition:
itkDeformationVectorFieldTransform.h:72
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputVectorType
Superclass::InputVectorType InputVectorType
Definition:
itkAdvancedTransform.h:111
itk::DeformationVectorFieldTransform::operator=
void operator=(const Self &)
itk::DeformationVectorFieldTransform::DeformationVectorFieldTransform
DeformationVectorFieldTransform()
itk::DeformationVectorFieldTransform::JacobianType
Superclass::JacobianType JacobianType
Definition:
itkDeformationVectorFieldTransform.h:67
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputPointType
Superclass::OutputPointType OutputPointType
Definition:
itkAdvancedTransform.h:120
itkAdvancedBSplineDeformableTransform.h
itk::DeformationVectorFieldTransform::CoefficientImagePointer
Superclass::ImagePointer CoefficientImagePointer
Definition:
itkDeformationVectorFieldTransform.h:80
itk::DeformationVectorFieldTransform::GetCoefficientVectorImage
virtual void GetCoefficientVectorImage(CoefficientVectorImagePointer &vecImage) const
itk::AdvancedBSplineDeformableTransformBase
Base class for deformable transform using a B-spline representation.
Definition:
itkAdvancedBSplineDeformableTransformBase.h:38
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputCovariantVectorType
Superclass::InputCovariantVectorType InputCovariantVectorType
Definition:
itkAdvancedTransform.h:114
itk::AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 >::ImageType
Superclass::ImageType ImageType
Definition:
itkAdvancedBSplineDeformableTransform.h:183
itk::DeformationVectorFieldTransform::itkStaticConstMacro
itkStaticConstMacro(SpaceDimension, unsigned int, NDimensions)
Generated on 11-03-2014 for elastix by
1.8.6