go home Home | Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages
itkCyclicGridScheduleComputer.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright UMC Utrecht and contributors
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 __itkCyclicGridScheduleComputer_h__
19 #define __itkCyclicGridScheduleComputer_h__
20 
21 #include "itkImageBase.h"
22 #include "itkTransform.h"
24 
25 namespace itk
26 {
27 
40 template< typename TTransformScalarType, unsigned int VImageDimension >
42  public GridScheduleComputer< TTransformScalarType, VImageDimension >
43 {
44 public:
45 
48  typedef GridScheduleComputer<
49  TTransformScalarType, VImageDimension > Superclass;
51  typedef SmartPointer< const Self > ConstPointer;
52 
54  itkNewMacro( Self );
55 
58 
60  itkStaticConstMacro( Dimension, unsigned int, VImageDimension );
61 
63  typedef TTransformScalarType TransformScalarType;
64  typedef ImageBase<
65  itkGetStaticConstMacro( Dimension ) > ImageBaseType;
66  typedef typename ImageBaseType::PointType PointType;
67  typedef typename ImageBaseType::PointType OriginType;
68  typedef typename ImageBaseType::SpacingType SpacingType;
69  typedef typename ImageBaseType::DirectionType DirectionType;
70  typedef typename ImageBaseType::SizeType SizeType;
71  typedef typename ImageBaseType::SizeValueType SizeValueType;
72  typedef typename ImageBaseType::RegionType RegionType;
74  typedef std::vector< OriginType > VectorOriginType;
75  typedef std::vector< SpacingType > VectorSpacingType;
76  typedef std::vector< RegionType > VectorRegionType;
77  typedef std::vector< GridSpacingFactorType > VectorGridSpacingFactorType;
78 
80  typedef Transform<
82  itkGetStaticConstMacro( Dimension ),
83  itkGetStaticConstMacro( Dimension ) > TransformType;
84  typedef typename TransformType::Pointer TransformPointer;
85  typedef typename TransformType::ConstPointer TransformConstPointer;
86 
88  virtual void ComputeBSplineGrid( void );
89 
90 protected:
91 
94 
97 
98 private:
99 
100  CyclicGridScheduleComputer( const Self & ); // purposely not implemented
101  void operator=( const Self & ); // purposely not implemented
102 
103 };
104 
105 } // end namespace itk
106 
107 #ifndef ITK_MANUAL_INSTANTIATION
108 #include "itkCyclicGridScheduleComputer.hxx"
109 #endif
110 
111 #endif // end #ifndef __itkCyclicGridScheduleComputer_h__
itk::CyclicGridScheduleComputer::CyclicGridScheduleComputer
CyclicGridScheduleComputer()
itk::GridScheduleComputer
This class computes all information about the B-spline grid, given the image information and the desi...
Definition: itkGridScheduleComputer.h:42
itk::CyclicGridScheduleComputer::VectorGridSpacingFactorType
std::vector< GridSpacingFactorType > VectorGridSpacingFactorType
Definition: itkCyclicGridScheduleComputer.h:77
itk::CyclicGridScheduleComputer::itkStaticConstMacro
itkStaticConstMacro(Dimension, unsigned int, VImageDimension)
SmartPointer< Self >
itk::CyclicGridScheduleComputer::TransformScalarType
TTransformScalarType TransformScalarType
Definition: itkCyclicGridScheduleComputer.h:63
itk::CyclicGridScheduleComputer::TransformConstPointer
TransformType::ConstPointer TransformConstPointer
Definition: itkCyclicGridScheduleComputer.h:85
itk::CyclicGridScheduleComputer::SizeValueType
ImageBaseType::SizeValueType SizeValueType
Definition: itkCyclicGridScheduleComputer.h:71
itk::CyclicGridScheduleComputer::VectorRegionType
std::vector< RegionType > VectorRegionType
Definition: itkCyclicGridScheduleComputer.h:76
itk::CyclicGridScheduleComputer::Pointer
SmartPointer< Self > Pointer
Definition: itkCyclicGridScheduleComputer.h:50
itk::CyclicGridScheduleComputer::TransformPointer
TransformType::Pointer TransformPointer
Definition: itkCyclicGridScheduleComputer.h:84
itkGridScheduleComputer.h
itk::CyclicGridScheduleComputer::PointType
ImageBaseType::PointType PointType
Definition: itkCyclicGridScheduleComputer.h:66
itk::CyclicGridScheduleComputer::ImageBaseType
ImageBase< itkGetStaticConstMacro(Dimension) > ImageBaseType
Definition: itkCyclicGridScheduleComputer.h:65
itk::CyclicGridScheduleComputer::ComputeBSplineGrid
virtual void ComputeBSplineGrid(void)
itk::CyclicGridScheduleComputer::operator=
void operator=(const Self &)
itk::CyclicGridScheduleComputer::OriginType
ImageBaseType::PointType OriginType
Definition: itkCyclicGridScheduleComputer.h:67
itk::CyclicGridScheduleComputer::SizeType
ImageBaseType::SizeType SizeType
Definition: itkCyclicGridScheduleComputer.h:70
itk::CyclicGridScheduleComputer::SpacingType
ImageBaseType::SpacingType SpacingType
Definition: itkCyclicGridScheduleComputer.h:68
itk::CyclicGridScheduleComputer::Self
CyclicGridScheduleComputer Self
Definition: itkCyclicGridScheduleComputer.h:47
itk::CyclicGridScheduleComputer::GridSpacingFactorType
SpacingType GridSpacingFactorType
Definition: itkCyclicGridScheduleComputer.h:73
itk::CyclicGridScheduleComputer::Superclass
GridScheduleComputer< TTransformScalarType, VImageDimension > Superclass
Definition: itkCyclicGridScheduleComputer.h:49
itk
Definition: itkAdvancedImageToImageMetric.h:40
itk::CyclicGridScheduleComputer::CyclicGridScheduleComputer
CyclicGridScheduleComputer(const Self &)
itk::CyclicGridScheduleComputer::VectorSpacingType
std::vector< SpacingType > VectorSpacingType
Definition: itkCyclicGridScheduleComputer.h:75
itk::CyclicGridScheduleComputer
This class computes all information about the B-spline grid.
Definition: itkCyclicGridScheduleComputer.h:43
itk::CyclicGridScheduleComputer::TransformType
Transform< TransformScalarType, itkGetStaticConstMacro(Dimension), itkGetStaticConstMacro(Dimension) > TransformType
Definition: itkCyclicGridScheduleComputer.h:83
itk::CyclicGridScheduleComputer::DirectionType
ImageBaseType::DirectionType DirectionType
Definition: itkCyclicGridScheduleComputer.h:69
itk::CyclicGridScheduleComputer::RegionType
ImageBaseType::RegionType RegionType
Definition: itkCyclicGridScheduleComputer.h:72
itk::CyclicGridScheduleComputer::ConstPointer
SmartPointer< const Self > ConstPointer
Definition: itkCyclicGridScheduleComputer.h:51
itk::CyclicGridScheduleComputer::VectorOriginType
std::vector< OriginType > VectorOriginType
Definition: itkCyclicGridScheduleComputer.h:74
itk::CyclicGridScheduleComputer::~CyclicGridScheduleComputer
virtual ~CyclicGridScheduleComputer()
Definition: itkCyclicGridScheduleComputer.h:96


Generated on OURCE_DATE_EPOCH for elastix by doxygen 1.8.18 elastix logo