SimpleITK  
sitkElastixImageFilterImpl.h
Go to the documentation of this file.
1 #ifndef sitkelastiximagefilterimpl_h
2 #define sitkelastiximagefilterimpl_h
3 
4 // SimpleITK
8 
9 // Elastix
10 #include "itkElastixRegistrationMethod.h"
11 #include "elxParameterObject.h"
12 
13 namespace itk {
14  namespace simple {
15 
16 class SITKElastix_HIDDEN ElastixImageFilter::ElastixImageFilterImpl
17 {
18 public:
19  ElastixImageFilterImpl( void );
20  ~ElastixImageFilterImpl( void );
21 
22  typedef ElastixImageFilterImpl Self;
23 
25 
34 
35  typedef elastix::ParameterObject ParameterObjectType;
36  typedef elastix::ParameterObject::Pointer ParameterObjectPointer;
37 
38  std::string GetName( void ) const;
39 
40  void SetFixedImage( const Image& fixedImage );
41  void SetFixedImage( const VectorOfImage& fixedImages );
42  void AddFixedImage( const Image& fixedImage );
43  Image& GetFixedImage( const unsigned long index );
44  VectorOfImage& GetFixedImage( void );
45  void RemoveFixedImage( const unsigned long index );
46  void RemoveFixedImage( void );
47  unsigned int GetNumberOfFixedImages();
48 
49  void SetMovingImage( const Image& movingImages );
50  void SetMovingImage( const VectorOfImage& movingImage );
51  void AddMovingImage( const Image& movingImage );
52  Image& GetMovingImage( const unsigned long index );
53  VectorOfImage& GetMovingImage( void );
54  void RemoveMovingImage( const unsigned long index );
55  void RemoveMovingImage( void );
56  unsigned int GetNumberOfMovingImages();
57 
58  void SetFixedMask( const Image& fixedMask );
59  void SetFixedMask( const VectorOfImage& fixedMasks );
60  void AddFixedMask( const Image& fixedMask );
61  Image& GetFixedMask( const unsigned long index );
62  VectorOfImage& GetFixedMask( void );
63  void RemoveFixedMask( const unsigned long index );
64  void RemoveFixedMask( void );
65  unsigned int GetNumberOfFixedMasks();
66 
67  void SetMovingMask( const Image& movingMask );
68  void SetMovingMask( const VectorOfImage& movingMasks );
69  void AddMovingMask( const Image& movingMask );
70  Image& GetMovingMask( const unsigned long index );
71  VectorOfImage& GetMovingMask( void );
72  void RemoveMovingMask( const unsigned long index );
73  void RemoveMovingMask( void );
74  unsigned int GetNumberOfMovingMasks();
75 
76  void SetFixedPointSetFileName( const std::string movingPointSetFileName );
77  std::string GetFixedPointSetFileName( void );
78  void RemoveFixedPointSetFileName( void );
79 
80  void SetMovingPointSetFileName( const std::string movingPointSetFileName );
81  std::string GetMovingPointSetFileName( void );
82  void RemoveMovingPointSetFileName( void );
83 
84  void SetOutputDirectory( const std::string outputDirectory );
85  std::string GetOutputDirectory( void );
86  void RemoveOutputDirectory( void );
87 
88  void SetLogFileName( const std::string logFileName );
89  std::string GetLogFileName( void );
90  void RemoveLogFileName( void );
91 
92  void SetLogToFile( const bool logToFile );
93  bool GetLogToFile( void );
94  void LogToFileOn( void );
95  void LogToFileOff( void );
96 
97  void SetLogToConsole( bool );
98  bool GetLogToConsole( void );
99  void LogToConsoleOn();
100  void LogToConsoleOff();
101 
102  void SetNumberOfThreads( int n );
103  int GetNumberOfThreads( void );
104 
105  void SetParameterMap( const std::string transformName, const unsigned int numberOfResolutions = 4u, const double finalGridSpacingInPhysicalUnits = 10.0 );
106  void SetParameterMap( const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector );
107  void SetParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
108  void AddParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
109  std::vector< std::map< std::string, std::vector< std::string > > > GetParameterMap( void );
110  std::map< std::string, std::vector< std::string > > GetDefaultParameterMap( const std::string transformName, const unsigned int numberOfResolutions = 4, const double finalGridSpacingInPhysicalUnits = 10.0 );
111  unsigned int GetNumberOfParameterMaps( void );
112 
113  void SetParameter( const std::string key, const std::string value );
114  void SetParameter( const std::string key, const std::vector< std::string > value );
115  void SetParameter( const unsigned int index, const std::string key, const std::string value );
116  void SetParameter( const unsigned int index, const std::string key, const std::vector< std::string > value );
117  void AddParameter( const std::string key, const std::string value );
118  void AddParameter( const unsigned int index, const std::string key, const std::string value );
119  void AddParameter( const std::string key, const std::vector< std::string > value );
120  void AddParameter( const unsigned int index, const std::string key, const std::vector< std::string > value );
121  std::vector< std::string > GetParameter( const std::string key );
122  std::vector< std::string > GetParameter( const unsigned int index, const std::string key );
123  void RemoveParameter( const std::string key );
124  void RemoveParameter( const unsigned int index, const std::string key );
125 
126  void SetInitialTransformParameterFileName( const std::string initialTransformParmaterFileName );
127  std::string GetInitialTransformParameterFileName( void );
128  void RemoveInitialTransformParameterFileName( void );
129 
130  std::map< std::string, std::vector< std::string > > ReadParameterFile( const std::string filename );
131  void WriteParameterFile( const std::map< std::string, std::vector< std::string > > parameterMap, const std::string filename );
132 
133  Image Execute( void );
134  std::vector< std::map< std::string, std::vector< std::string > > > GetTransformParameterMap( void );
135  std::map< std::string, std::vector< std::string > > GetTransformParameterMap( const unsigned int index );
136  Image GetResultImage( void );
137 
138  void PrintParameterMap( void );
139  void PrintParameterMap( const ParameterMapType parameterMapVector );
140  void PrintParameterMap( const ParameterMapVectorType parameterMapVector );
141 
142  bool IsEmpty( const Image& image );
143 
144  // Definitions for SimpleITK member factory
145  typedef Image ( Self::*MemberFunctionType )( void );
146  template< class TFixedImage, class TMovingImage > Image DualExecuteInternal( void );
147  friend struct detail::DualExecuteInternalAddressor< MemberFunctionType >;
148  std::unique_ptr< detail::DualMemberFunctionFactory< MemberFunctionType > > m_DualMemberFactory;
149 
155 
159 
162 
163  std::string m_OutputDirectory;
164  std::string m_LogFileName;
165 
168 
170 
171 };
172 
173 } // end namespace simple
174 } // end namespace itk
175 
176 #endif // sitkelastiximagefilterimpl_h
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
itk::simple::ElastixImageFilter::m_FixedPointSetFileName
std::string m_FixedPointSetFileName
Definition: sitkElastixImageFilterImpl.h:157
itk::simple::ElastixImageFilter::VectorOfImage
ElastixImageFilter::VectorOfImage VectorOfImage
Definition: sitkElastixImageFilterImpl.h:24
itk::simple::ElastixImageFilter::m_ParameterMapVector
ParameterMapVectorType m_ParameterMapVector
Definition: sitkElastixImageFilterImpl.h:160
itk::simple::ElastixImageFilter::ParameterValueVectorType
std::vector< ParameterValueType > ParameterValueVectorType
Definition: sitkElastixImageFilter.h:49
itk::simple::ElastixImageFilter::m_FixedMasks
VectorOfImage m_FixedMasks
Definition: sitkElastixImageFilterImpl.h:152
itk::simple::ElastixImageFilter::m_LogFileName
std::string m_LogFileName
Definition: sitkElastixImageFilterImpl.h:164
itk::simple::ElastixImageFilter::ParameterMapType
ElastixImageFilter::ParameterMapType ParameterMapType
Definition: sitkElastixImageFilterImpl.h:30
itk::simple::ElastixImageFilter::m_ResultImage
Image m_ResultImage
Definition: sitkElastixImageFilterImpl.h:154
itk::simple::ReadParameterFile
SITKElastix_EXPORT std::map< std::string, std::vector< std::string > > ReadParameterFile(const std::string filename)
itk::simple::ElastixImageFilter::ParameterMapIterator
ParameterMapType::iterator ParameterMapIterator
Definition: sitkElastixImageFilter.h:53
sitkElastixImageFilter.h
itk::simple::ElastixImageFilter::ParameterValueType
std::string ParameterValueType
Definition: sitkElastixImageFilter.h:48
itk::simple::ElastixImageFilter::ParameterKeyType
std::string ParameterKeyType
Definition: sitkElastixImageFilter.h:47
itk::simple::ElastixImageFilter::m_MovingPointSetFileName
std::string m_MovingPointSetFileName
Definition: sitkElastixImageFilterImpl.h:158
itk::simple::ElastixImageFilter::VectorOfImage
std::vector< Image > VectorOfImage
Definition: sitkElastixImageFilter.h:45
itk::simple::ElastixImageFilter::m_MovingMasks
VectorOfImage m_MovingMasks
Definition: sitkElastixImageFilterImpl.h:153
itk::simple::ElastixImageFilter
The class that wraps the elastix registration library.
Definition: sitkElastixImageFilter.h:36
sitkMemberFunctionFactory.h
itk::simple::ElastixImageFilter::ParameterObjectPointer
elastix::ParameterObject::Pointer ParameterObjectPointer
Definition: sitkElastixImageFilterImpl.h:36
itk::simple::ElastixImageFilter::m_OutputDirectory
std::string m_OutputDirectory
Definition: sitkElastixImageFilterImpl.h:163
itk::simple::ElastixImageFilter::m_MovingImages
VectorOfImage m_MovingImages
Definition: sitkElastixImageFilterImpl.h:151
itk::simple::ElastixImageFilter::ParameterValueVectorType
ElastixImageFilter::ParameterValueVectorType ParameterValueVectorType
Definition: sitkElastixImageFilterImpl.h:28
SITKElastix_HIDDEN
#define SITKElastix_HIDDEN
Definition: sitkElastixTransformixWrappers.h:35
itk::simple::GetDefaultParameterMap
SITKElastix_EXPORT std::map< std::string, std::vector< std::string > > GetDefaultParameterMap(const std::string transform, const unsigned int numberOfResolutions=4, const double finalGridSpacingInPhysicalUnits=8.0)
itk::simple::ElastixImageFilter::m_LogToFile
bool m_LogToFile
Definition: sitkElastixImageFilterImpl.h:166
itk::simple::ElastixImageFilter::m_DualMemberFactory
std::unique_ptr< detail::DualMemberFunctionFactory< MemberFunctionType > > m_DualMemberFactory
Definition: sitkElastixImageFilterImpl.h:148
itk::simple::ElastixImageFilter::m_LogToConsole
bool m_LogToConsole
Definition: sitkElastixImageFilterImpl.h:167
itk::simple::ElastixImageFilter::ParameterMapConstIterator
ParameterMapType::const_iterator ParameterMapConstIterator
Definition: sitkElastixImageFilter.h:54
itk::simple::ElastixImageFilter::ParameterKeyType
ElastixImageFilter::ParameterKeyType ParameterKeyType
Definition: sitkElastixImageFilterImpl.h:26
sitkDualMemberFunctionFactory.h
itk::simple::ElastixImageFilter::ParameterValueVectorIterator
ElastixImageFilter::ParameterValueVectorIterator ParameterValueVectorIterator
Definition: sitkElastixImageFilterImpl.h:29
itk::simple::ElastixImageFilter::m_InitialTransformParameterMapFileName
std::string m_InitialTransformParameterMapFileName
Definition: sitkElastixImageFilterImpl.h:156
itk::simple::ElastixImageFilter::ParameterMapType
std::map< ParameterKeyType, ParameterValueVectorType > ParameterMapType
Definition: sitkElastixImageFilter.h:51
itk::simple::ElastixImageFilter::m_NumberOfThreads
int m_NumberOfThreads
Definition: sitkElastixImageFilterImpl.h:169
itk::simple::ElastixImageFilter::ParameterMapIterator
ElastixImageFilter::ParameterMapIterator ParameterMapIterator
Definition: sitkElastixImageFilterImpl.h:32
itk::simple::WriteParameterFile
SITKElastix_EXPORT void WriteParameterFile(const std::map< std::string, std::vector< std::string > > parameterMap, const std::string filename)
itk::simple::detail::DualExecuteInternalAddressor
Definition: sitkDetail.h:44
itk::simple::ElastixImageFilter::ParameterMapVectorType
ElastixImageFilter::ParameterMapVectorType ParameterMapVectorType
Definition: sitkElastixImageFilterImpl.h:31
itk
itk::simple::ElastixImageFilter::ParameterMapVectorType
std::vector< ParameterMapType > ParameterMapVectorType
Definition: sitkElastixImageFilter.h:52
itk::simple::ElastixImageFilter::ParameterValueType
ElastixImageFilter::ParameterValueType ParameterValueType
Definition: sitkElastixImageFilterImpl.h:27
itk::simple::ElastixImageFilter::ParameterMapConstIterator
ElastixImageFilter::ParameterMapConstIterator ParameterMapConstIterator
Definition: sitkElastixImageFilterImpl.h:33
itk::simple::ElastixImageFilter::ParameterValueVectorIterator
ParameterValueVectorType::iterator ParameterValueVectorIterator
Definition: sitkElastixImageFilter.h:50
itk::simple::PrintParameterMap
SITKElastix_EXPORT void PrintParameterMap(const std::map< std::string, std::vector< std::string > > parameterMap)
itk::simple::ElastixImageFilter::m_FixedImages
VectorOfImage m_FixedImages
Definition: sitkElastixImageFilterImpl.h:150
itk::simple::ElastixImageFilter::Self
ElastixImageFilterImpl Self
Definition: sitkElastixImageFilterImpl.h:22
itk::simple::ElastixImageFilter::m_TransformParameterMapVector
ParameterMapVectorType m_TransformParameterMapVector
Definition: sitkElastixImageFilterImpl.h:161
itk::simple::ElastixImageFilter::ParameterObjectType
elastix::ParameterObject ParameterObjectType
Definition: sitkElastixImageFilterImpl.h:35