1 #ifndef sitktransformiximagefilterimpl_h
2 #define sitktransformiximagefilterimpl_h
9 #include "itkTransformixFilter.h"
10 #include "elxParameterObject.h"
18 TransformixImageFilterImpl();
19 ~TransformixImageFilterImpl();
21 typedef TransformixImageFilterImpl
Self;
35 std::string GetName()
const;
37 void SetMovingImage(
const Image& movingImage );
38 Image& GetMovingImage();
39 void RemoveMovingImage();
41 void SetFixedPointSetFileName(
const std::string movingPointSetFileName );
42 std::string GetFixedPointSetFileName();
43 void RemoveFixedPointSetFileName();
45 void SetComputeSpatialJacobian(
const bool );
46 bool GetComputeSpatialJacobian();
47 void ComputeSpatialJacobianOn();
48 void ComputeSpatialJacobianOff();
50 void SetComputeDeterminantOfSpatialJacobian(
const bool );
51 bool GetComputeDeterminantOfSpatialJacobian();
52 void ComputeDeterminantOfSpatialJacobianOn();
53 void ComputeDeterminantOfSpatialJacobianOff();
55 void SetComputeDeformationField(
bool );
56 bool GetComputeDeformationField();
57 void ComputeDeformationFieldOn();
58 void ComputeDeformationFieldOff();
60 void SetOutputDirectory(
const std::string outputDirectory );
61 std::string GetOutputDirectory();
62 void RemoveOutputDirectory();
64 void SetLogFileName(
const std::string logFileName );
65 std::string GetLogFileName();
66 void RemoveLogFileName();
68 void SetLogToFile(
const bool logToFile );
73 void SetLogToConsole(
const bool logToConsole );
74 bool GetLogToConsole();
75 void LogToConsoleOn();
76 void LogToConsoleOff();
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();
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 );
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 );
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 );
104 Image GetResultImage();
105 Image GetDeformationField();
107 bool IsEmpty(
const Image& image );
111 template<
class TMovingImage >
Image ExecuteInternal();
113 std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > >
m_MemberFactory;
136 #endif // sitktransformiximagefilterimpl_h