18 #ifndef sitkTransformixImageFilter_h
19 #define sitkTransformixImageFilter_h
51 std::string GetName()
const;
53 SITK_RETURN_SELF_TYPE_HEADER SetMovingImage(
const Image& movingImage );
54 Image& GetMovingImage();
55 SITK_RETURN_SELF_TYPE_HEADER RemoveMovingImage();
57 SITK_RETURN_SELF_TYPE_HEADER SetFixedPointSetFileName(
const std::string movingPointSetFileName );
58 std::string GetFixedPointSetFileName();
59 SITK_RETURN_SELF_TYPE_HEADER RemoveFixedPointSetFileName();
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();
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();
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();
76 SITK_RETURN_SELF_TYPE_HEADER SetOutputDirectory(
const std::string outputDirectory );
77 std::string GetOutputDirectory();
78 SITK_RETURN_SELF_TYPE_HEADER RemoveOutputDirectory();
80 SITK_RETURN_SELF_TYPE_HEADER SetLogFileName(
const std::string logFileName );
81 std::string GetLogFileName();
82 SITK_RETURN_SELF_TYPE_HEADER RemoveLogFileName();
84 SITK_RETURN_SELF_TYPE_HEADER SetLogToFile(
const bool logToFile );
86 SITK_RETURN_SELF_TYPE_HEADER LogToFileOn();
87 SITK_RETURN_SELF_TYPE_HEADER LogToFileOff();
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();
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();
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 );
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 );
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 );
120 Image GetResultImage();
121 Image GetDeformationField();
125 class TransformixImageFilterImpl;
126 const std::unique_ptr<TransformixImageFilterImpl>
m_Pimple;
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 =
"." );
137 #endif // sitkTransformixImageFilter_h