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
15
#ifndef __itkDeformationVectorFieldTransform_H__
16
#define __itkDeformationVectorFieldTransform_H__
17
18
#include "
itkAdvancedBSplineDeformableTransform.h
"
19
20
namespace
itk
21
{
22
42
template
<
class
TScalarType =
double
,
unsigned
int
NDimensions = 3 >
43
class
DeformationVectorFieldTransform
44
:
public
AdvancedBSplineDeformableTransform
< TScalarType, NDimensions, 0 >
45
{
46
public
:
47
49
typedef
DeformationVectorFieldTransform
Self
;
50
typedef
AdvancedBSplineDeformableTransform
<
51
TScalarType, NDimensions, 0 >
Superclass
;
52
typedef
SmartPointer< Self >
Pointer
;
53
typedef
SmartPointer< const Self >
ConstPointer
;
54
56
itkNewMacro(
Self
);
57
59
itkTypeMacro(
DeformationVectorFieldTransform
,
AdvancedBSplineDeformableTransform
);
60
62
itkStaticConstMacro
( SpaceDimension,
unsigned
int
, NDimensions );
63
itkStaticConstMacro
( SplineOrder,
unsigned
int
, Superclass::SplineOrder );
64
66
typedef
typename
Superclass::ScalarType
ScalarType
;
67
typedef
typename
Superclass::ParametersType
ParametersType
;
68
typedef
typename
Superclass::JacobianType
JacobianType
;
69
typedef
typename
Superclass::InputVectorType
InputVectorType
;
70
typedef
typename
Superclass::OutputVectorType
OutputVectorType
;
71
typedef
typename
Superclass::InputCovariantVectorType
InputCovariantVectorType
;
72
typedef
typename
Superclass::OutputCovariantVectorType
OutputCovariantVectorType
;
73
typedef
typename
Superclass::InputVnlVectorType
InputVnlVectorType
;
74
typedef
typename
Superclass::OutputVnlVectorType
OutputVnlVectorType
;
75
typedef
typename
Superclass::InputPointType
InputPointType
;
76
typedef
typename
Superclass::OutputPointType
OutputPointType
;
77
79
typedef
typename
Superclass::PixelType
CoefficientPixelType
;
80
typedef
typename
Superclass::ImageType
CoefficientImageType
;
81
typedef
typename
Superclass::ImagePointer
CoefficientImagePointer
;
82
84
typedef
Vector<
float
,
85
itkGetStaticConstMacro( SpaceDimension ) >
CoefficientVectorPixelType
;
86
typedef
Image<
CoefficientVectorPixelType
,
87
itkGetStaticConstMacro( SpaceDimension ) >
CoefficientVectorImageType
;
88
typedef
typename
CoefficientVectorImageType::Pointer
CoefficientVectorImagePointer
;
89
99
virtual
void
SetCoefficientVectorImage
(
const
CoefficientVectorImageType
* vecImage );
100
107
virtual
void
GetCoefficientVectorImage
(
CoefficientVectorImagePointer
& vecImage )
const
;
108
109
protected
:
110
112
DeformationVectorFieldTransform
();
114
virtual
~DeformationVectorFieldTransform
();
115
116
private
:
117
119
DeformationVectorFieldTransform
(
const
Self
& );
// purposely not implemented
121
void
operator=
(
const
Self
& );
// purposely not implemented
122
124
CoefficientImagePointer
m_Images
[ SpaceDimension ];
125
126
};
// end class DeformationVectorFieldTransform
127
128
}
// end namespace itk
129
130
131
#ifndef ITK_MANUAL_INSTANTIATION
132
#include "itkDeformationVectorFieldTransform.txx"
133
#endif
134
135
#endif // end #ifndef __itkDeformationVectorFieldTransform_H__
136
itk::AdvancedBSplineDeformableTransform
Deformable transform using a B-spline representation.
Definition:
itkAdvancedBSplineDeformableTransform.h:127
itk::DeformationVectorFieldTransform::m_Images
CoefficientImagePointer m_Images[SpaceDimension]
Definition:
itkDeformationVectorFieldTransform.h:124
itk::DeformationVectorFieldTransform
An itk transform based on a DeformationVectorField.
Definition:
itkDeformationVectorFieldTransform.h:43
itk::DeformationVectorFieldTransform::OutputCovariantVectorType
Superclass::OutputCovariantVectorType OutputCovariantVectorType
Definition:
itkDeformationVectorFieldTransform.h:72
itk::DeformationVectorFieldTransform::SetCoefficientVectorImage
virtual void SetCoefficientVectorImage(const CoefficientVectorImageType *vecImage)
itk::DeformationVectorFieldTransform::InputVectorType
Superclass::InputVectorType InputVectorType
Definition:
itkDeformationVectorFieldTransform.h:69
itk::DeformationVectorFieldTransform::Pointer
SmartPointer< Self > Pointer
Definition:
itkDeformationVectorFieldTransform.h:52
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::ScalarType
Superclass::ScalarType ScalarType
Definition:
itkAdvancedTransform.h:105
itk::DeformationVectorFieldTransform::OutputVnlVectorType
Superclass::OutputVnlVectorType OutputVnlVectorType
Definition:
itkDeformationVectorFieldTransform.h:74
itk::DeformationVectorFieldTransform::ConstPointer
SmartPointer< const Self > ConstPointer
Definition:
itkDeformationVectorFieldTransform.h:53
itk::DeformationVectorFieldTransform::ParametersType
Superclass::ParametersType ParametersType
Definition:
itkDeformationVectorFieldTransform.h:67
itk::DeformationVectorFieldTransform::OutputPointType
Superclass::OutputPointType OutputPointType
Definition:
itkDeformationVectorFieldTransform.h:76
itk::DeformationVectorFieldTransform::CoefficientVectorPixelType
Vector< float, itkGetStaticConstMacro(SpaceDimension) > CoefficientVectorPixelType
Definition:
itkDeformationVectorFieldTransform.h:85
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputCovariantVectorType
Superclass::OutputCovariantVectorType OutputCovariantVectorType
Definition:
itkAdvancedTransform.h:113
itk::DeformationVectorFieldTransform::ScalarType
Superclass::ScalarType ScalarType
Definition:
itkDeformationVectorFieldTransform.h:66
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputVnlVectorType
Superclass::OutputVnlVectorType OutputVnlVectorType
Definition:
itkAdvancedTransform.h:115
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::ParametersType
Superclass::ParametersType ParametersType
Definition:
itkAdvancedTransform.h:106
float
itk::DeformationVectorFieldTransform::CoefficientImageType
Superclass::ImageType CoefficientImageType
Definition:
itkDeformationVectorFieldTransform.h:80
itk::DeformationVectorFieldTransform::Superclass
AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 > Superclass
Definition:
itkDeformationVectorFieldTransform.h:51
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputVnlVectorType
Superclass::InputVnlVectorType InputVnlVectorType
Definition:
itkAdvancedTransform.h:114
itk::AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 >::PixelType
Superclass::PixelType PixelType
Definition:
itkAdvancedBSplineDeformableTransform.h:176
itk::DeformationVectorFieldTransform::CoefficientPixelType
Superclass::PixelType CoefficientPixelType
Definition:
itkDeformationVectorFieldTransform.h:79
itk::DeformationVectorFieldTransform::CoefficientVectorImageType
Image< CoefficientVectorPixelType, itkGetStaticConstMacro(SpaceDimension) > CoefficientVectorImageType
Definition:
itkDeformationVectorFieldTransform.h:87
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputVectorType
Superclass::OutputVectorType OutputVectorType
Definition:
itkAdvancedTransform.h:109
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::JacobianType
Superclass::JacobianType JacobianType
Definition:
itkAdvancedTransform.h:107
itk::DeformationVectorFieldTransform::Self
DeformationVectorFieldTransform Self
Definition:
itkDeformationVectorFieldTransform.h:49
itk::DeformationVectorFieldTransform::OutputVectorType
Superclass::OutputVectorType OutputVectorType
Definition:
itkDeformationVectorFieldTransform.h:70
itk::DeformationVectorFieldTransform::~DeformationVectorFieldTransform
virtual ~DeformationVectorFieldTransform()
itk::DeformationVectorFieldTransform::InputPointType
Superclass::InputPointType InputPointType
Definition:
itkDeformationVectorFieldTransform.h:75
itk::AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 >::ImagePointer
Superclass::ImagePointer ImagePointer
Definition:
itkAdvancedBSplineDeformableTransform.h:178
itk::DeformationVectorFieldTransform::InputCovariantVectorType
Superclass::InputCovariantVectorType InputCovariantVectorType
Definition:
itkDeformationVectorFieldTransform.h:71
itk::DeformationVectorFieldTransform::CoefficientVectorImagePointer
CoefficientVectorImageType::Pointer CoefficientVectorImagePointer
Definition:
itkDeformationVectorFieldTransform.h:88
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputPointType
Superclass::InputPointType InputPointType
Definition:
itkAdvancedTransform.h:116
itk::DeformationVectorFieldTransform::InputVnlVectorType
Superclass::InputVnlVectorType InputVnlVectorType
Definition:
itkDeformationVectorFieldTransform.h:73
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputVectorType
Superclass::InputVectorType InputVectorType
Definition:
itkAdvancedTransform.h:108
itk::DeformationVectorFieldTransform::operator=
void operator=(const Self &)
itk::DeformationVectorFieldTransform::DeformationVectorFieldTransform
DeformationVectorFieldTransform()
itk::DeformationVectorFieldTransform::JacobianType
Superclass::JacobianType JacobianType
Definition:
itkDeformationVectorFieldTransform.h:68
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::OutputPointType
Superclass::OutputPointType OutputPointType
Definition:
itkAdvancedTransform.h:117
itkAdvancedBSplineDeformableTransform.h
itk::DeformationVectorFieldTransform::CoefficientImagePointer
Superclass::ImagePointer CoefficientImagePointer
Definition:
itkDeformationVectorFieldTransform.h:81
itk::DeformationVectorFieldTransform::GetCoefficientVectorImage
virtual void GetCoefficientVectorImage(CoefficientVectorImagePointer &vecImage) const
itk::AdvancedBSplineDeformableTransformBase
Base class for deformable transform using a B-spline representation.
Definition:
itkAdvancedBSplineDeformableTransformBase.h:39
itk::AdvancedTransform< TScalarType, NDimensions, NDimensions >::InputCovariantVectorType
Superclass::InputCovariantVectorType InputCovariantVectorType
Definition:
itkAdvancedTransform.h:111
itk::AdvancedBSplineDeformableTransform< TScalarType, NDimensions, 0 >::ImageType
Superclass::ImageType ImageType
Definition:
itkAdvancedBSplineDeformableTransform.h:177
itk::DeformationVectorFieldTransform::itkStaticConstMacro
itkStaticConstMacro(SpaceDimension, unsigned int, NDimensions)
Generated on 06-12-2013 for elastix by
1.8.5