SimpleITK  
sitkTransformixImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright NumFOCUS
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 sitkTransformixImageFilter_h
19 #define sitkTransformixImageFilter_h
20 
22 #include "sitkCommon.h"
23 #include "sitkImage.h"
24 
25 #include <map>
26 #include <memory> // For unique_ptr.
27 #include <string>
28 #include <vector>
29 
30 namespace itk {
31  namespace simple {
32 
34 {
35 public:
36 
39 
41 
42  typedef std::string ParameterKeyType;
43  typedef std::string ParameterValueType;
44  typedef std::vector< ParameterValueType > ParameterValueVectorType;
45  typedef ParameterValueVectorType::iterator ParameterValueVectorIterator;
46  typedef std::map< ParameterKeyType, ParameterValueVectorType > ParameterMapType;
47  typedef std::vector< ParameterMapType > ParameterMapVectorType;
48  typedef ParameterMapType::iterator ParameterMapIterator;
49  typedef ParameterMapType::const_iterator ParameterMapConstIterator;
50 
51  std::string GetName() const;
52 
53  SITK_RETURN_SELF_TYPE_HEADER SetMovingImage( const Image& movingImage );
54  Image& GetMovingImage();
55  SITK_RETURN_SELF_TYPE_HEADER RemoveMovingImage();
56 
57  SITK_RETURN_SELF_TYPE_HEADER SetFixedPointSetFileName( const std::string movingPointSetFileName );
58  std::string GetFixedPointSetFileName();
59  SITK_RETURN_SELF_TYPE_HEADER RemoveFixedPointSetFileName();
60 
61  SITK_RETURN_SELF_TYPE_HEADER SetComputeSpatialJacobian( const bool );
62  bool GetComputeSpatialJacobian();
63  SITK_RETURN_SELF_TYPE_HEADER ComputeSpatialJacobianOn();
64  SITK_RETURN_SELF_TYPE_HEADER ComputeSpatialJacobianOff();
65 
66  SITK_RETURN_SELF_TYPE_HEADER SetComputeDeterminantOfSpatialJacobian( const bool );
67  bool GetComputeDeterminantOfSpatialJacobian();
68  SITK_RETURN_SELF_TYPE_HEADER ComputeDeterminantOfSpatialJacobianOn();
69  SITK_RETURN_SELF_TYPE_HEADER ComputeDeterminantOfSpatialJacobianOff();
70 
71  SITK_RETURN_SELF_TYPE_HEADER SetComputeDeformationField( bool );
72  bool GetComputeDeformationField();
73  SITK_RETURN_SELF_TYPE_HEADER ComputeDeformationFieldOn();
74  SITK_RETURN_SELF_TYPE_HEADER ComputeDeformationFieldOff();
75 
76  SITK_RETURN_SELF_TYPE_HEADER SetOutputDirectory( const std::string outputDirectory );
77  std::string GetOutputDirectory();
78  SITK_RETURN_SELF_TYPE_HEADER RemoveOutputDirectory();
79 
80  SITK_RETURN_SELF_TYPE_HEADER SetLogFileName( const std::string logFileName );
81  std::string GetLogFileName();
82  SITK_RETURN_SELF_TYPE_HEADER RemoveLogFileName();
83 
84  SITK_RETURN_SELF_TYPE_HEADER SetLogToFile( const bool logToFile );
85  bool GetLogToFile();
86  SITK_RETURN_SELF_TYPE_HEADER LogToFileOn();
87  SITK_RETURN_SELF_TYPE_HEADER LogToFileOff();
88 
89  SITK_RETURN_SELF_TYPE_HEADER SetLogToConsole( const bool logToConsole );
90  bool GetLogToConsole();
91  SITK_RETURN_SELF_TYPE_HEADER LogToConsoleOn();
92  SITK_RETURN_SELF_TYPE_HEADER LogToConsoleOff();
93 
94  SITK_RETURN_SELF_TYPE_HEADER SetTransformParameterMap( const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector );
95  SITK_RETURN_SELF_TYPE_HEADER SetTransformParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
96  SITK_RETURN_SELF_TYPE_HEADER AddTransformParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
97  std::vector< std::map< std::string, std::vector< std::string > > > GetTransformParameterMap();
98  unsigned int GetNumberOfTransformParameterMaps();
99 
100  SITK_RETURN_SELF_TYPE_HEADER SetTransformParameter( const std::string key, const std::string value );
101  SITK_RETURN_SELF_TYPE_HEADER SetTransformParameter( const std::string key, const std::vector< std::string > value );
102  SITK_RETURN_SELF_TYPE_HEADER SetTransformParameter( const unsigned int index, const std::string key, const std::string value );
103  SITK_RETURN_SELF_TYPE_HEADER SetTransformParameter( const unsigned int index, const std::string key, const std::vector< std::string > value );
104  SITK_RETURN_SELF_TYPE_HEADER AddTransformParameter( const std::string key, const std::string value );
105  SITK_RETURN_SELF_TYPE_HEADER AddTransformParameter( const unsigned int index, const std::string key, const std::string value );
106  std::vector< std::string > GetTransformParameter( const std::string key );
107  std::vector< std::string > GetTransformParameter( const unsigned int index, const std::string key );
108  SITK_RETURN_SELF_TYPE_HEADER RemoveTransformParameter( const std::string key );
109  SITK_RETURN_SELF_TYPE_HEADER RemoveTransformParameter( const unsigned int index, const std::string key );
110 
111  std::map< std::string, std::vector< std::string > > ReadParameterFile( const std::string parameterFileName );
112  SITK_RETURN_SELF_TYPE_HEADER WriteParameterFile( const std::map< std::string, std::vector< std::string > > parameterMap, const std::string parameterFileName );
113 
114  SITK_RETURN_SELF_TYPE_HEADER PrintParameterMap();
115  SITK_RETURN_SELF_TYPE_HEADER PrintParameterMap( const std::map< std::string, std::vector< std::string > > parameterMap );
116  SITK_RETURN_SELF_TYPE_HEADER PrintParameterMap( const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector );
117 
118  Image Execute();
119 
120  Image GetResultImage();
121  Image GetDeformationField();
122 
123 private:
124 
125  class TransformixImageFilterImpl;
126  const std::unique_ptr<TransformixImageFilterImpl> m_Pimple;
127 
128 };
129 
130 // Procedural Interface
131 SITKElastix_EXPORT Image Transformix( const Image& movingImage, const std::map< std::string, std::vector< std::string > > parameterMap, const bool logToConsole = false, const std::string outputDirectory = "." );
132 SITKElastix_EXPORT Image Transformix( const Image& movingImage, const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector, const bool logToConsole = false, const std::string outputDirectory = "." );
133 
134 } // end namespace simple
135 } // end namespace itk
136 
137 #endif // sitkTransformixImageFilter_h
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
itk::simple::TransformixImageFilter::ParameterMapIterator
ParameterMapType::iterator ParameterMapIterator
Definition: sitkTransformixImageFilter.h:48
itk::simple::ReadParameterFile
SITKElastix_EXPORT std::map< std::string, std::vector< std::string > > ReadParameterFile(const std::string filename)
itk::simple::TransformixImageFilter::ParameterValueType
std::string ParameterValueType
Definition: sitkTransformixImageFilter.h:43
sitkCommon.h
itk::simple::TransformixImageFilter
Definition: sitkTransformixImageFilter.h:33
sitkImage.h
SITKElastix_EXPORT
#define SITKElastix_EXPORT
Definition: sitkElastixTransformixWrappers.h:32
itk::simple::TransformixImageFilter::ParameterMapConstIterator
ParameterMapType::const_iterator ParameterMapConstIterator
Definition: sitkTransformixImageFilter.h:49
itk::simple::TransformixImageFilter::ParameterValueVectorIterator
ParameterValueVectorType::iterator ParameterValueVectorIterator
Definition: sitkTransformixImageFilter.h:45
sitkElastixTransformixWrappers.h
itk::simple::TransformixImageFilter::ParameterKeyType
std::string ParameterKeyType
Definition: sitkTransformixImageFilter.h:42
itk::simple::TransformixImageFilter::m_Pimple
const std::unique_ptr< TransformixImageFilterImpl > m_Pimple
Definition: sitkTransformixImageFilter.h:125
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
TransformixImageFilter Self
Definition: sitkTransformixImageFilter.h:40
itk
itk::simple::Transformix
SITKElastix_EXPORT Image Transformix(const Image &movingImage, const std::map< std::string, std::vector< std::string > > parameterMap, const bool logToConsole=false, const std::string outputDirectory=".")
itk::simple::PrintParameterMap
SITKElastix_EXPORT void PrintParameterMap(const std::map< std::string, std::vector< std::string > > parameterMap)
itk::simple::TransformixImageFilter::ParameterMapType
std::map< ParameterKeyType, ParameterValueVectorType > ParameterMapType
Definition: sitkTransformixImageFilter.h:46
itk::simple::TransformixImageFilter::ParameterValueVectorType
std::vector< ParameterValueType > ParameterValueVectorType
Definition: sitkTransformixImageFilter.h:44
itk::simple::TransformixImageFilter::ParameterMapVectorType
std::vector< ParameterMapType > ParameterMapVectorType
Definition: sitkTransformixImageFilter.h:47