-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathelxElastixMain.cxx
More file actions
599 lines (496 loc) · 20 KB
/
Copy pathelxElastixMain.cxx
File metadata and controls
599 lines (496 loc) · 20 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
/*=========================================================================
*
* Copyright UMC Utrecht and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "elxElastixMain.h"
#include <itkDeref.h>
#ifdef ELASTIX_USE_OPENCL
# include "itkOpenCLContext.h"
# include "itkOpenCLSetup.h"
#endif
namespace elastix
{
using itk::Deref;
/**
* ********************* Constructor ****************************
*/
ElastixMain::ElastixMain() = default;
/**
* ********************** Destructor ****************************
*/
ElastixMain::~ElastixMain() = default;
/**
* **************************** Run *****************************
*
* Assuming EnterCommandLineParameters has already been invoked.
* or that m_Configuration is initialized in another way.
*/
int
ElastixMain::Run()
{
/** Set process properties. */
this->SetProcessPriority();
this->SetMaximumNumberOfThreads();
/** Initialize database. */
int errorCode = this->InitDBIndex();
if (errorCode != 0)
{
return errorCode;
}
/** Create the elastix component. */
try
{
/** Key "Elastix", see elxComponentLoader::InstallSupportedImageTypes(). */
MainBase::m_Elastix = this->CreateComponent("Elastix");
}
catch (const itk::ExceptionObject & excp)
{
/** We just print the exception and let the program quit. */
log::error(std::ostringstream{} << excp);
errorCode = 1;
return errorCode;
}
/** Create OpenCL context and logger here. */
#ifdef ELASTIX_USE_OPENCL
const Configuration & configuration = Deref(MainBase::GetConfiguration());
/** Check if user overrides OpenCL device selection. */
std::string userSuppliedOpenCLDeviceType = "GPU";
configuration.ReadParameter(userSuppliedOpenCLDeviceType, "OpenCLDeviceType", 0, false);
int userSuppliedOpenCLDeviceID = -1;
configuration.ReadParameter(userSuppliedOpenCLDeviceID, "OpenCLDeviceID", 0, false);
std::string errorMessage = "";
const bool creatingContextSuccessful =
itk::CreateOpenCLContext(errorMessage, userSuppliedOpenCLDeviceType, userSuppliedOpenCLDeviceID);
if (!creatingContextSuccessful)
{
/** Report and disable the GPU by releasing the context. */
log::info(std::ostringstream{} << errorMessage << '\n' << " OpenCL processing in elastix is disabled.\n");
itk::OpenCLContext::Pointer context = itk::OpenCLContext::GetInstance();
context->Release();
}
/** Create a log file. */
itk::CreateOpenCLLogger("elastix", configuration.GetCommandLineArgument("-out"));
#endif
auto & elastixBase = this->GetElastixBase();
/** Set some information in the ElastixBase. */
elastixBase.SetConfiguration(MainBase::GetConfiguration());
elastixBase.SetTransformConfigurations(MainBase::m_TransformConfigurations);
elastixBase.SetDBIndex(MainBase::m_DBIndex);
/** Populate the component containers. ImageSampler is not mandatory.
* No defaults are specified for ImageSampler, Metric, Transform
* and Optimizer.
*/
elastixBase.SetRegistrationContainer(
this->CreateComponents("Registration", "MultiResolutionRegistration", errorCode));
elastixBase.SetFixedImagePyramidContainer(
this->CreateComponents("FixedImagePyramid", "FixedSmoothingImagePyramid", errorCode));
elastixBase.SetMovingImagePyramidContainer(
this->CreateComponents("MovingImagePyramid", "MovingSmoothingImagePyramid", errorCode));
elastixBase.SetImageSamplerContainer(this->CreateComponents("ImageSampler", "", errorCode, false));
elastixBase.SetInterpolatorContainer(this->CreateComponents("Interpolator", "BSplineInterpolator", errorCode));
elastixBase.SetMetricContainer(this->CreateComponents("Metric", "", errorCode));
elastixBase.SetOptimizerContainer(this->CreateComponents("Optimizer", "", errorCode));
elastixBase.SetResampleInterpolatorContainer(
this->CreateComponents("ResampleInterpolator", "FinalBSplineInterpolator", errorCode));
elastixBase.SetResamplerContainer(this->CreateComponents("Resampler", "DefaultResampler", errorCode));
elastixBase.SetTransformContainer(this->CreateComponents("Transform", "", errorCode));
/** Check if all component could be created. */
if (errorCode != 0)
{
log::error("ERROR: One or more components could not be created.");
return 1;
}
/** Set the images, masks, and weighted masks. If not set by the user, it is not a problem.
* ElastixTemplate will try to load them from disk.
*/
elastixBase.SetFixedImageContainer(this->GetModifiableFixedImageContainer());
elastixBase.SetMovingImageContainer(this->GetModifiableMovingImageContainer());
elastixBase.SetFixedMaskContainer(this->GetModifiableFixedMaskContainer());
elastixBase.SetMovingMaskContainer(this->GetModifiableMovingMaskContainer());
elastixBase.SetFixedWeightedMask(this->GetModifiableFixedWeightedMask()); // Set fixed weighted mask
elastixBase.SetMovingWeightedMask(this->GetModifiableMovingWeightedMask()); // Set moving weighted mask
elastixBase.SetResultImageContainer(this->GetModifiableResultImageContainer());
elastixBase.SetFixedPoints(m_FixedPoints);
elastixBase.SetMovingPoints(m_MovingPoints);
/** Set the initial transform, if it happens to be there. */
elastixBase.SetInitialTransform(this->GetModifiableInitialTransform());
/** Set the original fixed image direction cosines (relevant in case the
* UseDirectionCosines parameter was set to false.
*/
elastixBase.SetOriginalFixedImageDirectionFlat(this->GetOriginalFixedImageDirectionFlat());
/** Run elastix! */
try
{
errorCode = elastixBase.Run();
}
catch (const itk::ExceptionObject & excp1)
{
/** We just print the itk::exception and let the program quit. */
log::error(std::ostringstream{} << excp1);
errorCode = 1;
}
catch (const std::exception & excp2)
{
/** We just print the std::exception and let the program quit. */
log::error(std::ostringstream{} << "std: " << excp2.what());
errorCode = 1;
}
catch (...)
{
/** We don't know what happened and just print a general message. */
log::error(std::ostringstream{} << "ERROR: an unknown non-ITK, non-std exception was caught.\n"
<< "Please report this to elastix@bigr.nl.");
errorCode = 1;
}
/** Return the final transform. */
m_FinalTransform = elastixBase.GetFinalTransform();
/** Get the transformation parameter map */
m_TransformParameterMap = elastixBase.GetTransformParameterMap();
/** Store the images in ElastixMain. */
this->SetFixedImageContainer(elastixBase.GetFixedImageContainer());
this->SetMovingImageContainer(elastixBase.GetMovingImageContainer());
this->SetFixedMaskContainer(elastixBase.GetFixedMaskContainer());
this->SetMovingMaskContainer(elastixBase.GetMovingMaskContainer());
this->SetResultImageContainer(elastixBase.GetResultImageContainer());
/** Store the original fixed image direction cosines (relevant in case the
* UseDirectionCosines parameter was set to false. */
this->SetOriginalFixedImageDirectionFlat(elastixBase.GetOriginalFixedImageDirectionFlat());
/** Return a value. */
return errorCode;
} // end Run()
int
ElastixMain::RunWithInitialTransformParameterMaps(const ArgumentMapType & argmap,
const ParameterMapType & inputMap,
const std::vector<ParameterMapType> & initialTransformParameterMaps)
{
if (Deref(MainBase::GetConfiguration()).Initialize(argmap, inputMap) != 0)
{
log::error("ERROR: Something went wrong during initialization of the configuration object.");
}
const auto numberOfTransformParameterMaps = initialTransformParameterMaps.size();
m_TransformConfigurations.clear();
m_TransformConfigurations.resize(numberOfTransformParameterMaps);
for (size_t i = 0; i < numberOfTransformParameterMaps; ++i)
{
/** Initialize the configuration object with the
* command line parameters entered by the user.
*/
const auto configuration = Configuration::New();
int dummy = configuration->Initialize(argmap, initialTransformParameterMaps[i]);
m_TransformConfigurations[i] = configuration;
if (dummy)
{
log::error(std::ostringstream{} << "ERROR: Something went wrong during initialization of configuration object "
<< i << ".");
}
}
return ElastixMain::Run();
}
/**
* ************************** InitDBIndex ***********************
*
* Checks if the configuration object has been initialized,
* determines the requested ImageTypes, and sets the m_DBIndex
* to the corresponding value (by asking the elx::ComponentDatabase).
*/
int
ElastixMain::InitDBIndex()
{
const Configuration & configuration = Deref(MainBase::GetConfiguration());
/** Only do something when the configuration object wasn't initialized yet. */
if (configuration.IsInitialized())
{
/** FixedImagePixelType. */
if (MainBase::m_FixedImagePixelType.empty())
{
/** Try to read it from the parameter file. */
MainBase::m_FixedImagePixelType = "float"; // \note: this assumes elastix was compiled for float
configuration.ReadParameter(MainBase::m_FixedImagePixelType, "FixedInternalImagePixelType", 0);
}
/** FixedImageDimension. */
if (MainBase::m_FixedImageDimension == 0)
{
if (!BaseComponent::IsElastixLibrary())
{
/** Get the fixed image file name. */
std::string fixedImageFileName = configuration.GetCommandLineArgument("-f");
if (fixedImageFileName.empty())
{
fixedImageFileName = configuration.GetCommandLineArgument("-f0");
}
/** Sanity check. */
if (fixedImageFileName.empty())
{
log::error(std::ostringstream{} << "ERROR: could not read fixed image.\n"
<< " both -f and -f0 are unspecified");
return 1;
}
/** Read it from the fixed image header. */
try
{
this->GetImageInformationFromFile(fixedImageFileName, MainBase::m_FixedImageDimension);
}
catch (const itk::ExceptionObject & err)
{
log::error(std::ostringstream{} << "ERROR: could not read fixed image.\n" << err);
return 1;
}
/** Try to read it from the parameter file.
* This only serves as a check; elastix versions prior to 4.6 read the dimension
* from the parameter file, but now we read it from the image header.
*/
unsigned int fixDimParameterFile = 0;
bool foundInParameterFile = configuration.ReadParameter(fixDimParameterFile, "FixedImageDimension", 0, false);
/** Check. */
if (foundInParameterFile)
{
if (fixDimParameterFile != MainBase::m_FixedImageDimension)
{
log::error(std::ostringstream{}
<< "ERROR: problem defining fixed image dimension.\n"
<< " The parameter file says: " << fixDimParameterFile << "\n"
<< " The fixed image header says: " << MainBase::m_FixedImageDimension << "\n"
<< " Note that from elastix 4.6 the parameter file definition \"FixedImageDimension\" "
"is not needed anymore.\n Please remove this entry from your parameter file.");
return 1;
}
}
}
else
{
configuration.ReadParameter(MainBase::m_FixedImageDimension, "FixedImageDimension", 0, false);
}
/** Just a sanity check, probably not needed. */
if (MainBase::m_FixedImageDimension == 0)
{
log::error("ERROR: The FixedImageDimension is not given.");
return 1;
}
}
/** MovingImagePixelType. */
if (MainBase::m_MovingImagePixelType.empty())
{
/** Try to read it from the parameter file. */
MainBase::m_MovingImagePixelType = "float"; // \note: this assumes elastix was compiled for float
configuration.ReadParameter(MainBase::m_MovingImagePixelType, "MovingInternalImagePixelType", 0);
}
/** MovingImageDimension. */
if (MainBase::m_MovingImageDimension == 0)
{
if (!BaseComponent::IsElastixLibrary())
{
/** Get the moving image file name. */
std::string movingImageFileName = configuration.GetCommandLineArgument("-m");
if (movingImageFileName.empty())
{
movingImageFileName = configuration.GetCommandLineArgument("-m0");
}
/** Sanity check. */
if (movingImageFileName.empty())
{
log::error(std::ostringstream{} << "ERROR: could not read moving image.\n"
<< " both -m and -m0 are unspecified");
return 1;
}
/** Read it from the moving image header. */
try
{
this->GetImageInformationFromFile(movingImageFileName, MainBase::m_MovingImageDimension);
}
catch (const itk::ExceptionObject & err)
{
log::error(std::ostringstream{} << "ERROR: could not read moving image.\n" << err);
return 1;
}
/** Try to read it from the parameter file.
* This only serves as a check; elastix versions prior to 4.6 read the dimension
* from the parameter file, but now we read it from the image header.
*/
unsigned int movDimParameterFile = 0;
bool foundInParameterFile = configuration.ReadParameter(movDimParameterFile, "MovingImageDimension", 0, false);
/** Check. */
if (foundInParameterFile)
{
if (movDimParameterFile != MainBase::m_MovingImageDimension)
{
log::error(std::ostringstream{}
<< "ERROR: problem defining moving image dimension.\n"
<< " The parameter file says: " << movDimParameterFile << "\n"
<< " The moving image header says: " << MainBase::m_MovingImageDimension << "\n"
<< " Note that from elastix 4.6 the parameter file definition \"MovingImageDimension\" "
"is not needed anymore.\n Please remove this entry from your parameter file.");
return 1;
}
}
}
else
{
configuration.ReadParameter(MainBase::m_MovingImageDimension, "MovingImageDimension", 0, false);
}
/** Just a sanity check, probably not needed. */
if (MainBase::m_MovingImageDimension == 0)
{
log::error("ERROR: The MovingImageDimension is not given.");
return 1;
}
}
/** Get the DBIndex from the ComponentDatabase. */
MainBase::m_DBIndex = GetComponentDatabase().GetIndex(MainBase::m_FixedImagePixelType,
MainBase::m_FixedImageDimension,
MainBase::m_MovingImagePixelType,
MainBase::m_MovingImageDimension);
if (MainBase::m_DBIndex == 0)
{
log::error("ERROR: Something went wrong in the ComponentDatabase");
return 1;
}
} // end if configuration.Initialized();
else
{
log::error("ERROR: The configuration object has not been initialized.");
return 1;
}
/** Return an OK value. */
return 0;
} // end InitDBIndex()
/**
* ********************* SetElastixLevel ************************
*/
void
ElastixMain::SetElastixLevel(unsigned int level)
{
/** Call SetElastixLevel from MyConfiguration. */
Configuration & configuration = Deref(MainBase::GetConfiguration());
configuration.SetElastixLevel(level);
} // end SetElastixLevel()
/**
* ********************* GetElastixLevel ************************
*/
unsigned int
ElastixMain::GetElastixLevel() const
{
/** Call GetElastixLevel from MyConfiguration. */
const Configuration & configuration = Deref(MainBase::GetConfiguration());
return configuration.GetElastixLevel();
} // end GetElastixLevel()
/**
* ********************* SetTotalNumberOfElastixLevels ************************
*/
void
ElastixMain::SetTotalNumberOfElastixLevels(unsigned int levels)
{
/** Call SetTotalNumberOfElastixLevels from MyConfiguration. */
Configuration & configuration = Deref(MainBase::GetConfiguration());
configuration.SetTotalNumberOfElastixLevels(levels);
} // end SetTotalNumberOfElastixLevels()
/**
* ********************* GetTotalNumberOfElastixLevels ************************
*/
unsigned int
ElastixMain::GetTotalNumberOfElastixLevels() const
{
/** Call GetTotalNumberOfElastixLevels from MyConfiguration. */
const Configuration & configuration = Deref(MainBase::GetConfiguration());
return configuration.GetTotalNumberOfElastixLevels();
} // end GetTotalNumberOfElastixLevels()
/**
* ******************** SetOriginalFixedImageDirectionFlat ********************
*/
void
ElastixMain::SetOriginalFixedImageDirectionFlat(const FlatDirectionCosinesType & arg)
{
m_OriginalFixedImageDirectionFlat = arg;
} // end SetOriginalFixedImageDirectionFlat()
/**
* ******************** GetOriginalFixedImageDirectionFlat ********************
*/
const ElastixMain::FlatDirectionCosinesType &
ElastixMain::GetOriginalFixedImageDirectionFlat() const
{
return m_OriginalFixedImageDirectionFlat;
} // end GetOriginalFixedImageDirectionFlat()
/**
* ******************** GetTransformParameterMap ********************
*/
ElastixMain::ParameterMapType
ElastixMain::GetTransformParameterMap() const
{
return m_TransformParameterMap;
} // end GetTransformParameterMap()
/**
* ******************** GetImageInformationFromFile ********************
*/
void
ElastixMain::GetImageInformationFromFile(const std::string & filename, ImageDimensionType & imageDimension) const
{
if (!filename.empty())
{
/** Dummy image type. */
const unsigned int DummyDimension = 3;
using DummyPixelType = short;
using DummyImageType = itk::Image<DummyPixelType, DummyDimension>;
/** Create a testReader. */
using ReaderType = itk::ImageFileReader<DummyImageType>;
auto testReader = ReaderType::New();
testReader->SetFileName(filename);
/** Generate all information. */
testReader->UpdateOutputInformation();
/** Extract the required information. */
itk::SmartPointer<const itk::ImageIOBase> testImageIO = testReader->GetImageIO();
// itk::ImageIOBase::IOComponentType componentType = testImageIO->GetComponentType();
// pixelType = itk::ImageIOBase::GetComponentTypeAsString( componentType );
if (testImageIO.IsNull())
{
/** Extra check. In principal, ITK the testreader should already have thrown an exception
* if it was not possible to create the ImageIO object */
itkExceptionMacro("ERROR: ImageIO object was not created, but no exception was thrown.");
}
imageDimension = testImageIO->GetNumberOfDimensions();
} // end if
} // end GetImageInformationFromFile()
/**
* ******************** SetFixedWeightedMask ********************
*/
void
ElastixMain::SetFixedWeightedMask(const MaskImageType * mask)
{
m_FixedWeightedMask = mask;
}
/**
* ******************** GetModifiableFixedWeightedMask ********************
*/
ElastixMain::MaskImageType *
ElastixMain::GetModifiableFixedWeightedMask()
{
return m_FixedWeightedMask;
}
/**
* ******************** SetMovingWeightedMask ********************
*/
void
ElastixMain::SetMovingWeightedMask(const MaskImageType * mask)
{
m_MovingWeightedMask = mask;
}
/**
* ******************** GetModifiableMovingWeightedMask ********************
*/
ElastixMain::MaskImageType *
ElastixMain::GetModifiableMovingWeightedMask()
{
return m_MovingWeightedMask;
}
} // end namespace elastix