File: itkMultiResolutionImageRegistrationMethod2.hxx

package info (click to toggle)
elastix 5.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 42,480 kB
  • sloc: cpp: 68,403; lisp: 4,118; python: 1,013; xml: 182; sh: 177; makefile: 33
file content (464 lines) | stat: -rw-r--r-- 15,188 bytes parent folder | download
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
/*=========================================================================
 *
 *  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.
 *
 *=========================================================================*/

/** This class is a slight modification of the original ITK class:
 * MultiResolutionImageRegistrationMethod.
 * The original copyright message is pasted here, which includes also
 * the version information: */
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile$
  Date:      $Date: 2008-11-06 16:31:54 +0100 (Thu, 06 Nov 2008) $
  Version:   $Revision: 2637 $

  Copyright (c) Insight Software Consortium. All rights reserved.
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/
#ifndef _itkMultiResolutionImageRegistrationMethod2_hxx
#define _itkMultiResolutionImageRegistrationMethod2_hxx

#include "itkMultiResolutionImageRegistrationMethod2.h"
#include "itkRecursiveMultiResolutionPyramidImageFilter.h"
#include "itkContinuousIndex.h"
#include <vnl/vnl_math.h>

namespace itk
{

/*
 * Constructor
 */
template <typename TFixedImage, typename TMovingImage>
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::MultiResolutionImageRegistrationMethod2()
{
  this->SetNumberOfRequiredOutputs(1); // for the Transform

  this->m_FixedImage = nullptr;   // has to be provided by the user.
  this->m_MovingImage = nullptr;  // has to be provided by the user.
  this->m_Transform = nullptr;    // has to be provided by the user.
  this->m_Interpolator = nullptr; // has to be provided by the user.
  this->m_Metric = nullptr;       // has to be provided by the user.
  this->m_Optimizer = nullptr;    // has to be provided by the user.

  // Use MultiResolutionPyramidImageFilter as the default
  // image pyramids.
  this->m_FixedImagePyramid = FixedImagePyramidType::New();
  this->m_MovingImagePyramid = MovingImagePyramidType::New();

  this->m_NumberOfLevels = 1;
  this->m_CurrentLevel = 0;

  this->m_Stop = false;

  this->ProcessObject::SetNthOutput(0, TransformOutputType::New().GetPointer());

} // end Constructor


/*
 * Initialize by setting the interconnects between components.
 */
template <typename TFixedImage, typename TMovingImage>
void
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::Initialize()
{

  // Sanity checks
  if (!this->m_Metric)
  {
    itkExceptionMacro("Metric is not present");
  }

  if (!this->m_Optimizer)
  {
    itkExceptionMacro("Optimizer is not present");
  }

  if (!this->m_Transform)
  {
    itkExceptionMacro("Transform is not present");
  }

  if (!this->m_Interpolator)
  {
    itkExceptionMacro("Interpolator is not present");
  }

  // Setup the metric
  this->m_Metric->SetMovingImage(this->m_MovingImagePyramid->GetOutput(this->m_CurrentLevel));
  this->m_Metric->SetFixedImage(this->m_FixedImagePyramid->GetOutput(this->m_CurrentLevel));
  this->m_Metric->SetTransform(this->m_Transform);
  this->m_Metric->SetInterpolator(this->m_Interpolator);
  this->m_Metric->SetFixedImageRegion(this->m_FixedImageRegionPyramid[this->m_CurrentLevel]);
  this->m_Metric->Initialize();

  // Setup the optimizer
  this->m_Optimizer->SetCostFunction(this->m_Metric);
  this->m_Optimizer->SetInitialPosition(this->m_InitialTransformParametersOfNextLevel);

  //
  // Connect the transform to the Decorator.
  //
  TransformOutputType * transformOutput = static_cast<TransformOutputType *>(this->ProcessObject::GetOutput(0));

  transformOutput->Set(this->m_Transform.GetPointer());

} // end Initialize()


/*
 * Stop the Registration Process
 */
template <typename TFixedImage, typename TMovingImage>
void
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::StopRegistration()
{
  this->m_Stop = true;
}


/*
 * Stop the Registration Process
 */
template <typename TFixedImage, typename TMovingImage>
void
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::PreparePyramids()
{
  if (!this->m_Transform)
  {
    itkExceptionMacro("Transform is not present");
  }

  this->m_InitialTransformParametersOfNextLevel = this->m_InitialTransformParameters;

  if (const auto numberOfInitialTransformParameters = this->m_InitialTransformParameters.size();
      numberOfInitialTransformParameters != this->m_Transform->GetNumberOfParameters())
  {
    itkExceptionMacro("Size mismatch between initial parameters ("
                      << numberOfInitialTransformParameters << ") and transform ("
                      << this->m_Transform->GetNumberOfParameters() << ")");
  }

  // Sanity checks
  if (!this->m_FixedImage)
  {
    itkExceptionMacro("FixedImage is not present");
  }

  if (!this->m_MovingImage)
  {
    itkExceptionMacro("MovingImage is not present");
  }

  if (!this->m_FixedImagePyramid)
  {
    itkExceptionMacro("Fixed image pyramid is not present");
  }

  if (!this->m_MovingImagePyramid)
  {
    itkExceptionMacro("Moving image pyramid is not present");
  }

  // Setup the fixed image pyramid
  this->m_FixedImagePyramid->SetNumberOfLevels(this->m_NumberOfLevels);
  this->m_FixedImagePyramid->SetInput(this->m_FixedImage);
  this->m_FixedImagePyramid->UpdateLargestPossibleRegion();

  // Setup the moving image pyramid
  this->m_MovingImagePyramid->SetNumberOfLevels(this->m_NumberOfLevels);
  this->m_MovingImagePyramid->SetInput(this->m_MovingImage);
  this->m_MovingImagePyramid->UpdateLargestPossibleRegion();

  using SizeType = typename FixedImageRegionType::SizeType;
  using IndexType = typename FixedImageRegionType::IndexType;
  using ScheduleType = typename FixedImagePyramidType::ScheduleType;

  ScheduleType schedule = this->m_FixedImagePyramid->GetSchedule();

  SizeType  inputSize = this->m_FixedImageRegion.GetSize();
  IndexType inputStart = this->m_FixedImageRegion.GetIndex();
  IndexType inputEnd = inputStart;
  for (unsigned int dim = 0; dim < TFixedImage::ImageDimension; ++dim)
  {
    inputEnd[dim] += (inputSize[dim] - 1);
  }

  this->m_FixedImageRegionPyramid.reserve(this->m_NumberOfLevels);
  this->m_FixedImageRegionPyramid.resize(this->m_NumberOfLevels);

  // Compute the FixedImageRegion corresponding to each level of the
  // pyramid.
  //
  // In the ITK implementation this uses the same algorithm of the ShrinkImageFilter
  // since the regions should be compatible. However, we inherited another
  // Multiresolution pyramid, which does not use the same shrinking pattern.
  // Instead of copying the shrinking code, we compute image regions from
  // the result of the fixed image pyramid.
  using PointType = typename FixedImageType::PointType;
  using CoordRepType = typename PointType::CoordRepType;

  PointType inputStartPoint;
  PointType inputEndPoint;
  this->m_FixedImage->TransformIndexToPhysicalPoint(inputStart, inputStartPoint);
  this->m_FixedImage->TransformIndexToPhysicalPoint(inputEnd, inputEndPoint);

  for (unsigned int level = 0; level < this->m_NumberOfLevels; ++level)
  {
    SizeType         size;
    IndexType        start;
    FixedImageType * fixedImageAtLevel = this->m_FixedImagePyramid->GetOutput(level);
    /** map the original fixed image region to the image resulting from the
     * FixedImagePyramid at level l.
     * To be on the safe side, the start point is ceiled, and the end point is
     * floored. To see why, consider an image of 4 by 4, and its downsampled version of 2 by 2. */
    const auto startcindex =
      fixedImageAtLevel->template TransformPhysicalPointToContinuousIndex<CoordRepType>(inputStartPoint);
    const auto endcindex =
      fixedImageAtLevel->template TransformPhysicalPointToContinuousIndex<CoordRepType>(inputEndPoint);
    for (unsigned int dim = 0; dim < TFixedImage::ImageDimension; ++dim)
    {
      start[dim] = static_cast<IndexValueType>(std::ceil(startcindex[dim]));
      size[dim] =
        std::max(NumericTraits<SizeValueType>::One,
                 static_cast<SizeValueType>(static_cast<SizeValueType>(std::floor(endcindex[dim])) - start[dim] + 1));
    }

    this->m_FixedImageRegionPyramid[level].SetSize(size);
    this->m_FixedImageRegionPyramid[level].SetIndex(start);
  }

} // end PreparePyramids()


/*
 * Starts the Registration Process
 */
template <typename TFixedImage, typename TMovingImage>
void
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::StartRegistration()
{

  // StartRegistration is an old API from before
  // this egistrationMethod was a subclass of ProcessObject.
  // Historically, one could call StartRegistration() instead of
  // calling Update().  However, when called directly by the user, the
  // inputs to the RegistrationMethod may not be up to date.  This
  // may cause an unexpected behavior.
  //
  // Since we cannot eliminate StartRegistration for backward
  // compability reasons, we check whether StartRegistration was
  // called directly or whether Update() (which in turn called
  // StartRegistration()).
  if (!this->m_Updating)
  {
    this->Update();
  }
  else
  {
    this->m_Stop = false;

    this->PreparePyramids();

    for (this->m_CurrentLevel = 0; this->m_CurrentLevel < this->m_NumberOfLevels; this->m_CurrentLevel++)
    {

      // Invoke an iteration event.
      // This allows a UI to reset any of the components between
      // resolution level.
      this->InvokeEvent(IterationEvent());

      // Check if there has been a stop request
      if (this->m_Stop)
      {
        break;
      }

      try
      {
        // initialize the interconnects between components
        this->Initialize();
      }
      catch (const ExceptionObject &)
      {
        this->m_LastTransformParameters = ParametersType(1);
        this->m_LastTransformParameters.Fill(0.0f);

        // pass exception to caller
        throw;
      }

      try
      {
        // do the optimization
        this->m_Optimizer->StartOptimization();
      }
      catch (const ExceptionObject &)
      {
        // An error has occurred in the optimization.
        // Update the parameters
        this->m_LastTransformParameters = this->m_Optimizer->GetCurrentPosition();

        // Pass exception to caller
        throw;
      }

      // get the results
      this->m_LastTransformParameters = this->m_Optimizer->GetCurrentPosition();
      this->m_Transform->SetParameters(this->m_LastTransformParameters);

      // setup the initial parameters for next level
      if (this->m_CurrentLevel < this->m_NumberOfLevels - 1)
      {
        this->m_InitialTransformParametersOfNextLevel = this->m_LastTransformParameters;
      }
    }
  }

} // end StartRegistration()


/*
 * PrintSelf
 */
template <typename TFixedImage, typename TMovingImage>
void
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::PrintSelf(std::ostream & os, Indent indent) const
{
  Superclass::PrintSelf(os, indent);
  os << indent << "Metric: " << this->m_Metric.GetPointer() << std::endl;
  os << indent << "Optimizer: " << this->m_Optimizer.GetPointer() << std::endl;
  os << indent << "Transform: " << this->m_Transform.GetPointer() << std::endl;
  os << indent << "Interpolator: " << this->m_Interpolator.GetPointer() << std::endl;
  os << indent << "FixedImage: " << this->m_FixedImage.GetPointer() << std::endl;
  os << indent << "MovingImage: " << this->m_MovingImage.GetPointer() << std::endl;
  os << indent << "FixedImagePyramid: " << this->m_FixedImagePyramid.GetPointer() << std::endl;
  os << indent << "MovingImagePyramid: " << this->m_MovingImagePyramid.GetPointer() << std::endl;

  os << indent << "NumberOfLevels: " << this->m_NumberOfLevels << std::endl;
  os << indent << "CurrentLevel: " << this->m_CurrentLevel << std::endl;

  os << indent << "InitialTransformParameters: " << this->m_InitialTransformParameters << std::endl;
  os << indent << "InitialTransformParametersOfNextLevel: " << this->m_InitialTransformParametersOfNextLevel
     << std::endl;
  os << indent << "LastTransformParameters: " << this->m_LastTransformParameters << std::endl;
  os << indent << "FixedImageRegion: " << this->m_FixedImageRegion << std::endl;

  for (unsigned int level = 0; level < this->m_FixedImageRegionPyramid.size(); ++level)
  {
    os << indent << "FixedImageRegion at level " << level << ": " << this->m_FixedImageRegionPyramid[level]
       << std::endl;
  }

} // end PrintSelf()


/*
 * Generate Data
 */
template <typename TFixedImage, typename TMovingImage>
void
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::GenerateData()
{
  this->StartRegistration();
}


template <typename TFixedImage, typename TMovingImage>
ModifiedTimeType
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::GetMTime() const
{
  ModifiedTimeType mtime = Superclass::GetMTime();
  ModifiedTimeType m;

  // Some of the following should be removed once ivars are put in the
  // input and output lists

  if (this->m_Transform)
  {
    m = this->m_Transform->GetMTime();
    mtime = (m > mtime ? m : mtime);
  }

  if (this->m_Interpolator)
  {
    m = this->m_Interpolator->GetMTime();
    mtime = (m > mtime ? m : mtime);
  }

  if (this->m_Metric)
  {
    m = this->m_Metric->GetMTime();
    mtime = (m > mtime ? m : mtime);
  }

  if (this->m_Optimizer)
  {
    m = this->m_Optimizer->GetMTime();
    mtime = (m > mtime ? m : mtime);
  }

  if (this->m_FixedImage)
  {
    m = this->m_FixedImage->GetMTime();
    mtime = (m > mtime ? m : mtime);
  }

  if (this->m_MovingImage)
  {
    m = this->m_MovingImage->GetMTime();
    mtime = (m > mtime ? m : mtime);
  }

  return mtime;

} // end GetMTime()


/*
 *  Get Output
 */
template <typename TFixedImage, typename TMovingImage>
auto
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::GetOutput() const -> const TransformOutputType *
{
  return static_cast<const TransformOutputType *>(this->ProcessObject::GetOutput(0));
}

template <typename TFixedImage, typename TMovingImage>
DataObject::Pointer
MultiResolutionImageRegistrationMethod2<TFixedImage, TMovingImage>::MakeOutput(
  ProcessObject::DataObjectPointerArraySizeType output)
{
  if (output > 0)
  {
    itkExceptionMacro("MakeOutput request for an output number larger than the expected number of outputs.");
  }
  return TransformOutputType::New().GetPointer();
}


} // end namespace itk

#endif