SimpleITK  
sitkTransformixImageFilterImpl.h
Go to the documentation of this file.
1 #ifndef sitktransformiximagefilterimpl_h
2 #define sitktransformiximagefilterimpl_h
3 
4 // SimpleITK
7 
8 // Transformix
9 #include "itkTransformixFilter.h"
10 #include "elxParameterObject.h"
11 
12 namespace itk {
13  namespace simple {
14 
15 class SITKElastix_HIDDEN TransformixImageFilter::TransformixImageFilterImpl
16 {
17 public:
18  TransformixImageFilterImpl();
19  ~TransformixImageFilterImpl();
20 
21  typedef TransformixImageFilterImpl Self;
22 
23  typedef elastix::ParameterObject ParameterObjectType;
24  typedef ParameterObjectType::Pointer ParameterObjectPointer;
25  typedef ParameterObjectType::ParameterMapType ParameterMapType;
26  typedef ParameterObjectType::ParameterMapVectorType ParameterMapVectorType;
27  typedef ParameterMapType::iterator ParameterMapIterator;
28  typedef ParameterMapType::const_iterator ParameterMapConstIterator;
29  typedef itk::ParameterFileParser ParameterFileParserType;
30  typedef ParameterFileParserType::Pointer ParameterFileParserPointer;
31  typedef ParameterObjectType::ParameterKeyType ParameterKeyType;
32  typedef ParameterObjectType::ParameterValueType ParameterValueType;
33  typedef ParameterObjectType::ParameterValueVectorType ParameterValueVectorType;
34 
35  std::string GetName() const;
36 
37  void SetMovingImage( const Image& movingImage );
38  Image& GetMovingImage();
39  void RemoveMovingImage();
40 
41  void SetFixedPointSetFileName( const std::string movingPointSetFileName );
42  std::string GetFixedPointSetFileName();
43  void RemoveFixedPointSetFileName();
44 
45  void SetComputeSpatialJacobian( const bool );
46  bool GetComputeSpatialJacobian();
47  void ComputeSpatialJacobianOn();
48  void ComputeSpatialJacobianOff();
49 
50  void SetComputeDeterminantOfSpatialJacobian( const bool );
51  bool GetComputeDeterminantOfSpatialJacobian();
52  void ComputeDeterminantOfSpatialJacobianOn();
53  void ComputeDeterminantOfSpatialJacobianOff();
54 
55  void SetComputeDeformationField( bool );
56  bool GetComputeDeformationField();
57  void ComputeDeformationFieldOn();
58  void ComputeDeformationFieldOff();
59 
60  void SetOutputDirectory( const std::string outputDirectory );
61  std::string GetOutputDirectory();
62  void RemoveOutputDirectory();
63 
64  void SetLogFileName( const std::string logFileName );
65  std::string GetLogFileName();
66  void RemoveLogFileName();
67 
68  void SetLogToFile( const bool logToFile );
69  bool GetLogToFile();
70  void LogToFileOn();
71  void LogToFileOff();
72 
73  void SetLogToConsole( const bool logToConsole );
74  bool GetLogToConsole();
75  void LogToConsoleOn();
76  void LogToConsoleOff();
77 
78  void SetTransformParameterMap( const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector );
79  void SetTransformParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
80  void AddTransformParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
81  std::vector< std::map< std::string, std::vector< std::string > > > GetTransformParameterMap();
82  unsigned int GetNumberOfTransformParameterMaps();
83 
84  void SetTransformParameter( const std::string key, const std::string value );
85  void SetTransformParameter( const std::string key, const std::vector< std::string > value );
86  void SetTransformParameter( const unsigned int index, const std::string key, const std::string value );
87  void SetTransformParameter( const unsigned int index, const std::string key, const std::vector< std::string > value );
88  void AddTransformParameter( const std::string key, const std::string value );
89  void AddTransformParameter( const unsigned int index, const std::string key, const std::string value );
90  std::vector< std::string > GetTransformParameter( const std::string key );
91  std::vector< std::string > GetTransformParameter( const unsigned int index, const std::string key );
92  void RemoveTransformParameter( const std::string key );
93  void RemoveTransformParameter( const unsigned int index, const std::string key );
94 
95  std::map< std::string, std::vector< std::string > > ReadParameterFile( const std::string filename );
96  void WriteParameterFile( const std::map< std::string, std::vector< std::string > > parameterMap, const std::string parameterFileName );
97 
98  void PrintParameterMap();
99  void PrintParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
100  void PrintParameterMap( const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector );
101 
102  Image Execute();
103 
104  Image GetResultImage();
105  Image GetDeformationField();
106 
107  bool IsEmpty( const Image& image );
108 
109  // Definitions for SimpleITK member factory
110  typedef Image ( Self::*MemberFunctionType )();
111  template< class TMovingImage > Image ExecuteInternal();
112  friend struct detail::MemberFunctionAddressor< MemberFunctionType >;
113  std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory;
114 
118 
120 
125 
126  std::string m_OutputDirectory;
127  std::string m_LogFileName;
128 
131 };
132 
133 } // end namespace simple
134 } // end namespace itk
135 
136 #endif // sitktransformiximagefilterimpl_h
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
itk::simple::TransformixImageFilter::m_LogToConsole
bool m_LogToConsole
Definition: sitkTransformixImageFilterImpl.h:129
itk::simple::TransformixImageFilter::ParameterMapVectorType
ParameterObjectType::ParameterMapVectorType ParameterMapVectorType
Definition: sitkTransformixImageFilterImpl.h:26
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::TransformixImageFilter::ParameterMapIterator
ParameterMapType::iterator ParameterMapIterator
Definition: sitkTransformixImageFilterImpl.h:27
itk::simple::TransformixImageFilter::ParameterValueType
ParameterObjectType::ParameterValueType ParameterValueType
Definition: sitkTransformixImageFilterImpl.h:32
itk::simple::ReadParameterFile
SITKElastix_EXPORT std::map< std::string, std::vector< std::string > > ReadParameterFile(const std::string filename)
itk::simple::TransformixImageFilter
Definition: sitkTransformixImageFilter.h:33
itk::simple::TransformixImageFilter::ParameterMapConstIterator
ParameterMapType::const_iterator ParameterMapConstIterator
Definition: sitkTransformixImageFilterImpl.h:28
itk::simple::TransformixImageFilter::ParameterFileParserPointer
ParameterFileParserType::Pointer ParameterFileParserPointer
Definition: sitkTransformixImageFilterImpl.h:30
itk::simple::TransformixImageFilter::ParameterObjectType
elastix::ParameterObject ParameterObjectType
Definition: sitkTransformixImageFilterImpl.h:23
itk::simple::TransformixImageFilter::m_OutputDirectory
std::string m_OutputDirectory
Definition: sitkTransformixImageFilterImpl.h:126
sitkMemberFunctionFactory.h
itk::simple::TransformixImageFilter::m_MovingPointSetFileName
std::string m_MovingPointSetFileName
Definition: sitkTransformixImageFilterImpl.h:124
itk::simple::TransformixImageFilter::m_ComputeDeformationField
bool m_ComputeDeformationField
Definition: sitkTransformixImageFilterImpl.h:123
itk::simple::TransformixImageFilter::m_ComputeSpatialJacobian
bool m_ComputeSpatialJacobian
Definition: sitkTransformixImageFilterImpl.h:121
itk::simple::TransformixImageFilter::m_LogToFile
bool m_LogToFile
Definition: sitkTransformixImageFilterImpl.h:130
SITKElastix_HIDDEN
#define SITKElastix_HIDDEN
Definition: sitkElastixTransformixWrappers.h:35
itk::simple::TransformixImageFilter::m_TransformParameterMapVector
ParameterMapVectorType m_TransformParameterMapVector
Definition: sitkTransformixImageFilterImpl.h:119
itk::simple::TransformixImageFilter::m_ComputeDeterminantOfSpatialJacobian
bool m_ComputeDeterminantOfSpatialJacobian
Definition: sitkTransformixImageFilterImpl.h:122
itk::simple::TransformixImageFilter::ParameterValueVectorType
ParameterObjectType::ParameterValueVectorType ParameterValueVectorType
Definition: sitkTransformixImageFilterImpl.h:33
itk::simple::TransformixImageFilter::m_MovingImage
Image m_MovingImage
Definition: sitkTransformixImageFilterImpl.h:115
itk::simple::TransformixImageFilter::m_DeformationField
Image m_DeformationField
Definition: sitkTransformixImageFilterImpl.h:117
itk::simple::TransformixImageFilter::ParameterKeyType
ParameterObjectType::ParameterKeyType ParameterKeyType
Definition: sitkTransformixImageFilterImpl.h:31
itk::simple::WriteParameterFile
SITKElastix_EXPORT void WriteParameterFile(const std::map< std::string, std::vector< std::string > > parameterMap, const std::string filename)
itk::simple::TransformixImageFilter::Self
TransformixImageFilterImpl Self
Definition: sitkTransformixImageFilterImpl.h:21
itk::simple::TransformixImageFilter::ParameterObjectPointer
ParameterObjectType::Pointer ParameterObjectPointer
Definition: sitkTransformixImageFilterImpl.h:24
itk
itk::simple::TransformixImageFilter::ParameterFileParserType
itk::ParameterFileParser ParameterFileParserType
Definition: sitkTransformixImageFilterImpl.h:29
itk::simple::TransformixImageFilter::m_LogFileName
std::string m_LogFileName
Definition: sitkTransformixImageFilterImpl.h:127
itk::simple::TransformixImageFilter::ParameterMapType
ParameterObjectType::ParameterMapType ParameterMapType
Definition: sitkTransformixImageFilterImpl.h:25
sitkTransformixImageFilter.h
itk::simple::TransformixImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkTransformixImageFilterImpl.h:113
itk::simple::PrintParameterMap
SITKElastix_EXPORT void PrintParameterMap(const std::map< std::string, std::vector< std::string > > parameterMap)
itk::simple::TransformixImageFilter::m_ResultImage
Image m_ResultImage
Definition: sitkTransformixImageFilterImpl.h:116
itk::simple::TransformixImageFilter::ParameterMapVectorType
std::vector< ParameterMapType > ParameterMapVectorType
Definition: sitkTransformixImageFilter.h:47