18 #ifndef sitkElastixImageFilter_h
19 #define sitkElastixImageFilter_h
56 std::string GetName()
const;
62 SITK_RETURN_SELF_TYPE_HEADER SetFixedImage(
const Image& fixedImage );
69 SITK_RETURN_SELF_TYPE_HEADER SetFixedImage(
const VectorOfImage& fixedImages );
73 SITK_RETURN_SELF_TYPE_HEADER AddFixedImage(
const Image& fixedImage );
76 Image& GetFixedImage(
const unsigned long index );
78 SITK_RETURN_SELF_TYPE_HEADER RemoveFixedImage(
const unsigned long index );
79 SITK_RETURN_SELF_TYPE_HEADER RemoveFixedImage();
80 unsigned int GetNumberOfFixedImages();
82 SITK_RETURN_SELF_TYPE_HEADER SetMovingImage(
const Image& movingImages );
83 SITK_RETURN_SELF_TYPE_HEADER SetMovingImage(
const VectorOfImage& movingImage );
84 SITK_RETURN_SELF_TYPE_HEADER AddMovingImage(
const Image& movingImage );
85 Image& GetMovingImage(
const unsigned long index );
87 SITK_RETURN_SELF_TYPE_HEADER RemoveMovingImage(
const unsigned long index );
88 SITK_RETURN_SELF_TYPE_HEADER RemoveMovingImage();
89 unsigned int GetNumberOfMovingImages();
91 SITK_RETURN_SELF_TYPE_HEADER SetFixedMask(
const Image& fixedMask );
92 SITK_RETURN_SELF_TYPE_HEADER SetFixedMask(
const VectorOfImage& fixedMasks );
93 SITK_RETURN_SELF_TYPE_HEADER AddFixedMask(
const Image& fixedMask );
94 Image& GetFixedMask(
const unsigned long index );
96 SITK_RETURN_SELF_TYPE_HEADER RemoveFixedMask(
const unsigned long index );
97 SITK_RETURN_SELF_TYPE_HEADER RemoveFixedMask();
98 unsigned int GetNumberOfFixedMasks();
100 SITK_RETURN_SELF_TYPE_HEADER SetMovingMask(
const Image& movingMask );
101 SITK_RETURN_SELF_TYPE_HEADER SetMovingMask(
const VectorOfImage& movingMasks );
102 SITK_RETURN_SELF_TYPE_HEADER AddMovingMask(
const Image& movingMask );
103 Image& GetMovingMask(
const unsigned long index );
105 SITK_RETURN_SELF_TYPE_HEADER RemoveMovingMask(
const unsigned long index );
106 SITK_RETURN_SELF_TYPE_HEADER RemoveMovingMask();
107 unsigned int GetNumberOfMovingMasks();
109 SITK_RETURN_SELF_TYPE_HEADER SetFixedPointSetFileName(
const std::string movingPointSetFileName );
110 std::string GetFixedPointSetFileName();
111 SITK_RETURN_SELF_TYPE_HEADER RemoveFixedPointSetFileName();
113 SITK_RETURN_SELF_TYPE_HEADER SetMovingPointSetFileName(
const std::string movingPointSetFileName );
114 std::string GetMovingPointSetFileName();
115 SITK_RETURN_SELF_TYPE_HEADER RemoveMovingPointSetFileName();
117 SITK_RETURN_SELF_TYPE_HEADER SetOutputDirectory(
const std::string outputDirectory );
118 std::string GetOutputDirectory();
119 SITK_RETURN_SELF_TYPE_HEADER RemoveOutputDirectory();
121 SITK_RETURN_SELF_TYPE_HEADER SetLogFileName(
const std::string logFileName );
122 std::string GetLogFileName();
123 SITK_RETURN_SELF_TYPE_HEADER RemoveLogFileName();
125 SITK_RETURN_SELF_TYPE_HEADER SetLogToFile(
const bool logToFile );
127 SITK_RETURN_SELF_TYPE_HEADER LogToFileOn();
128 SITK_RETURN_SELF_TYPE_HEADER LogToFileOff();
130 SITK_RETURN_SELF_TYPE_HEADER SetLogToConsole(
bool );
131 bool GetLogToConsole();
132 SITK_RETURN_SELF_TYPE_HEADER LogToConsoleOn();
133 SITK_RETURN_SELF_TYPE_HEADER LogToConsoleOff();
135 SITK_RETURN_SELF_TYPE_HEADER SetNumberOfThreads(
int n );
136 int GetNumberOfThreads();
138 SITK_RETURN_SELF_TYPE_HEADER SetParameterMap(
const std::string transformName,
const unsigned int numberOfResolutions = 4u,
const double finalGridSpacingInPhysicalUnits = 10.0 );
139 SITK_RETURN_SELF_TYPE_HEADER SetParameterMap(
const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector );
140 SITK_RETURN_SELF_TYPE_HEADER SetParameterMap(
const std::map< std::string, std::vector< std::string > > parameterMap );
141 SITK_RETURN_SELF_TYPE_HEADER AddParameterMap(
const std::map< std::string, std::vector< std::string > > parameterMap );
142 std::vector< std::map< std::string, std::vector< std::string > > > GetParameterMap();
143 std::map< std::string, std::vector< std::string > >
GetDefaultParameterMap(
const std::string transformName,
const unsigned int numberOfResolutions = 4,
const double finalGridSpacingInPhysicalUnits = 10.0 );
144 unsigned int GetNumberOfParameterMaps();
146 SITK_RETURN_SELF_TYPE_HEADER SetParameter(
const std::string key,
const std::string value );
147 SITK_RETURN_SELF_TYPE_HEADER SetParameter(
const std::string key,
const std::vector< std::string > value );
148 SITK_RETURN_SELF_TYPE_HEADER SetParameter(
const unsigned int index,
const std::string key,
const std::string value );
149 SITK_RETURN_SELF_TYPE_HEADER SetParameter(
const unsigned int index,
const std::string key,
const std::vector< std::string > value );
150 SITK_RETURN_SELF_TYPE_HEADER AddParameter(
const std::string key,
const std::string value );
151 SITK_RETURN_SELF_TYPE_HEADER AddParameter(
const unsigned int index,
const std::string key,
const std::string value );
152 SITK_RETURN_SELF_TYPE_HEADER AddParameter(
const std::string key,
const std::vector< std::string > value );
153 SITK_RETURN_SELF_TYPE_HEADER AddParameter(
const unsigned int index,
const std::string key,
const std::vector< std::string > value );
154 std::vector< std::string > GetParameter(
const std::string key );
155 std::vector< std::string > GetParameter(
const unsigned int index,
const std::string key );
156 SITK_RETURN_SELF_TYPE_HEADER RemoveParameter(
const std::string key );
157 SITK_RETURN_SELF_TYPE_HEADER RemoveParameter(
const unsigned int index,
const std::string key );
159 SITK_RETURN_SELF_TYPE_HEADER SetInitialTransformParameterFileName(
const std::string initialTransformParmaterFileName );
160 std::string GetInitialTransformParameterFileName();
161 SITK_RETURN_SELF_TYPE_HEADER RemoveInitialTransformParameterFileName();
163 std::map< std::string, std::vector< std::string > >
ReadParameterFile(
const std::string filename );
164 SITK_RETURN_SELF_TYPE_HEADER
WriteParameterFile(
const std::map< std::string, std::vector< std::string > > parameterMap,
const std::string filename );
167 std::vector< std::map< std::string, std::vector< std::string > > > GetTransformParameterMap();
168 std::map< std::string, std::vector< std::string > > GetTransformParameterMap(
const unsigned int index );
169 Image GetResultImage();
177 class ElastixImageFilterImpl;
178 const std::unique_ptr<ElastixImageFilterImpl>
m_Pimple;
183 SITKElastix_EXPORT std::map< std::string, std::vector< std::string > >
GetDefaultParameterMap(
const std::string transform,
const unsigned int numberOfResolutions = 4,
const double finalGridSpacingInPhysicalUnits = 8.0 );
190 SITKElastix_EXPORT Image Elastix(
const Image& fixedImage,
const Image& movingImage,
const std::string defaultParameterMapName,
const bool logToConsole =
false,
const bool logToFile =
false,
const std::string outputDirectory =
"." );
191 SITKElastix_EXPORT Image Elastix(
const Image& fixedImage,
const Image& movingImage,
const std::map< std::string, std::vector< std::string > > parameterMap,
const bool logToConsole =
false,
const bool logToFile =
false,
const std::string outputDirectory =
"." );
192 SITKElastix_EXPORT Image Elastix(
const Image& fixedImage,
const Image& movingImage,
const std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector,
const bool logToConsole =
false,
const bool logToFile =
false,
const std::string outputDirectory =
"." );
193 SITKElastix_EXPORT Image Elastix(
const Image& fixedImage,
const Image& movingImage,
const std::string defaultParameterMapName,
const Image& fixedMask,
const Image& movingMask,
const bool logToConsole =
false,
const bool logToFile =
false,
const std::string outputDirectory =
"." );
194 SITKElastix_EXPORT Image Elastix(
const Image& fixedImage,
const Image& movingImage,
const std::map< std::string, std::vector< std::string > >,
const Image& fixedMask,
const Image& movingMask,
const bool logToConsole =
false,
const bool logToFile =
false,
const std::string outputDirectory =
"." );
195 SITKElastix_EXPORT Image Elastix(
const Image& fixedImage,
const Image& movingImage, std::vector< std::map< std::string, std::vector< std::string > > > parameterMapVector,
const Image& fixedMask,
const Image& movingMask,
const bool logToConsole =
false,
const bool logToFile =
false,
const std::string outputDirectory =
"." );
200 #endif // sitkElastixImageFilter_h