1 #ifndef sitkelastiximagefilterimpl_h
2 #define sitkelastiximagefilterimpl_h
10 #include "itkElastixRegistrationMethod.h"
11 #include "elxParameterObject.h"
19 ElastixImageFilterImpl(
void );
20 ~ElastixImageFilterImpl(
void );
22 typedef ElastixImageFilterImpl
Self;
38 std::string GetName(
void )
const;
40 void SetFixedImage(
const Image& fixedImage );
42 void AddFixedImage(
const Image& fixedImage );
43 Image& GetFixedImage(
const unsigned long index );
45 void RemoveFixedImage(
const unsigned long index );
46 void RemoveFixedImage(
void );
47 unsigned int GetNumberOfFixedImages();
49 void SetMovingImage(
const Image& movingImages );
51 void AddMovingImage(
const Image& movingImage );
52 Image& GetMovingImage(
const unsigned long index );
54 void RemoveMovingImage(
const unsigned long index );
55 void RemoveMovingImage(
void );
56 unsigned int GetNumberOfMovingImages();
58 void SetFixedMask(
const Image& fixedMask );
60 void AddFixedMask(
const Image& fixedMask );
61 Image& GetFixedMask(
const unsigned long index );
63 void RemoveFixedMask(
const unsigned long index );
64 void RemoveFixedMask(
void );
65 unsigned int GetNumberOfFixedMasks();
67 void SetMovingMask(
const Image& movingMask );
69 void AddMovingMask(
const Image& movingMask );
70 Image& GetMovingMask(
const unsigned long index );
72 void RemoveMovingMask(
const unsigned long index );
73 void RemoveMovingMask(
void );
74 unsigned int GetNumberOfMovingMasks();
76 void SetFixedPointSetFileName(
const std::string movingPointSetFileName );
77 std::string GetFixedPointSetFileName(
void );
78 void RemoveFixedPointSetFileName(
void );
80 void SetMovingPointSetFileName(
const std::string movingPointSetFileName );
81 std::string GetMovingPointSetFileName(
void );
82 void RemoveMovingPointSetFileName(
void );
84 void SetOutputDirectory(
const std::string outputDirectory );
85 std::string GetOutputDirectory(
void );
86 void RemoveOutputDirectory(
void );
88 void SetLogFileName(
const std::string logFileName );
89 std::string GetLogFileName(
void );
90 void RemoveLogFileName(
void );
92 void SetLogToFile(
const bool logToFile );
93 bool GetLogToFile(
void );
94 void LogToFileOn(
void );
95 void LogToFileOff(
void );
97 void SetLogToConsole(
bool );
98 bool GetLogToConsole(
void );
99 void LogToConsoleOn();
100 void LogToConsoleOff();
102 void SetNumberOfThreads(
int n );
103 int GetNumberOfThreads(
void );
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 );
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 );
126 void SetInitialTransformParameterFileName(
const std::string initialTransformParmaterFileName );
127 std::string GetInitialTransformParameterFileName(
void );
128 void RemoveInitialTransformParameterFileName(
void );
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 );
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 );
142 bool IsEmpty(
const Image& image );
146 template<
class TFixedImage,
class TMovingImage >
Image DualExecuteInternal(
void );
176 #endif // sitkelastiximagefilterimpl_h