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
|
/*=========================================================================
*
* 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.
*
*=========================================================================*/
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkKernelTransform2.h,v $
Language: C++
Date: $Date: 2006-11-28 14:22:18 $
Version: $Revision: 1.1 $
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 itkKernelTransform2_h
#define itkKernelTransform2_h
#include "itkAdvancedTransform.h"
#include "itkPoint.h"
#include "itkVector.h"
#include "itkMatrix.h"
#include "itkPointSet.h"
#include <deque>
#include <math.h>
#include <vnl/vnl_matrix_fixed.h>
#include <vnl/vnl_matrix.h>
#include <vnl/vnl_vector.h>
#include <vnl/vnl_vector_fixed.h>
#include <vnl/vnl_sample.h>
#include <vnl/algo/vnl_svd.h>
#include <vnl/algo/vnl_qr.h>
namespace itk
{
/** \class KernelTransform2
* Intended to be a base class for elastic body spline and thin plate spline.
* This is implemented in as straightforward a manner as possible from the
* IEEE TMI paper by Davis, Khotanzad, Flamig, and Harms, Vol. 16,
* No. 3 June 1997. Notation closely follows their paper, so if you have it
* in front of you, this code will make a lot more sense.
*
* KernelTransform2:
* Provides support for defining source and target landmarks
* Defines a number of data types used in the computations
* Defines the mathematical framework used to compute all splines,
* so that subclasses need only provide a kernel specific to
* that spline
*
* This formulation allows the stiffness of the spline to
* be adjusted, allowing the spline to vary from interpolating the
* landmarks to approximating the landmarks. This part of the
* formulation is based on the short paper by R. Sprengel, K. Rohr,
* H. Stiehl. "Thin-Plate Spline Approximation for Image
* Registration". In 18th International Conference of the IEEE
* Engineering in Medicine and Biology Society. 1996.
*
* This class was modified to support its use in the ITK registration framework
* by Rupert Brooks, McGill Centre for Intelligent Machines, Montreal, Canada
* March 2007. See the Insight Journal Paper by Brooks, R., Arbel, T.
* "Improvements to the itk::KernelTransform and its subclasses."
*
* Modified to include it in elastix:
* - style
* - make it inherit from AdvancedTransform
* - make it threadsafe, like was done in the itk as well.
* - Support for matrix inversion by QR decomposition, instead of SVD.
* QR is much faster. Used in SetParameters() and SetFixedParameters().
* - Much faster Jacobian computation for some of the derived kernel transforms.
*
* \ingroup Transforms
*
*/
template <class TScalarType, // probably only float and double make sense here
unsigned int NDimensions>
// Number of dimensions
class ITK_TEMPLATE_EXPORT KernelTransform2 : public AdvancedTransform<TScalarType, NDimensions, NDimensions>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(KernelTransform2);
/** Standard class typedefs. */
using Self = KernelTransform2;
using Superclass = AdvancedTransform<TScalarType, NDimensions, NDimensions>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** Run-time type information (and related methods). */
itkTypeMacro(KernelTransform2, AdvancedTransform);
/** New macro for creation of through a Smart Pointer. */
itkNewMacro(Self);
/** Dimension of the domain space. */
itkStaticConstMacro(SpaceDimension, unsigned int, NDimensions);
/** Typedefs. */
using typename Superclass::ScalarType;
using typename Superclass::ParametersType;
using typename Superclass::NumberOfParametersType;
using typename Superclass::JacobianType;
using typename Superclass::InputPointType;
using typename Superclass::OutputPointType;
using typename Superclass::InputVectorType;
using typename Superclass::OutputVectorType;
using typename Superclass::InputCovariantVectorType;
using typename Superclass::OutputCovariantVectorType;
using typename Superclass::InputVnlVectorType;
using typename Superclass::OutputVnlVectorType;
/** AdvancedTransform typedefs. */
using typename Superclass::NonZeroJacobianIndicesType;
using typename Superclass::SpatialJacobianType;
using typename Superclass::JacobianOfSpatialJacobianType;
using typename Superclass::SpatialHessianType;
using typename Superclass::JacobianOfSpatialHessianType;
using typename Superclass::InternalMatrixType;
/** PointList typedef. This type is used for maintaining lists of points,
* specifically, the source and target landmark lists.
*/
using PointSetTraitsType = DefaultStaticMeshTraits<TScalarType, NDimensions, NDimensions, TScalarType, TScalarType>;
using PointSetType = PointSet<InputPointType, NDimensions, PointSetTraitsType>;
using PointSetPointer = typename PointSetType::Pointer;
using PointsContainer = typename PointSetType::PointsContainer;
using PointsIterator = typename PointSetType::PointsContainerIterator;
using PointsConstIterator = typename PointSetType::PointsContainerConstIterator;
/** VectorSet typedef. */
using VectorSetType = VectorContainer<unsigned long, InputVectorType>;
using VectorSetPointer = typename VectorSetType::Pointer;
/** 'I' (identity) matrix typedef. */
using IMatrixType = vnl_matrix_fixed<TScalarType, NDimensions, NDimensions>;
/** Return the number of parameters that completely define the Transform. */
NumberOfParametersType
GetNumberOfParameters() const override
{
return (this->m_SourceLandmarks->GetNumberOfPoints() * SpaceDimension);
}
/** Get the source landmarks list, which we will denote \f$ p \f$. */
itkGetModifiableObjectMacro(SourceLandmarks, PointSetType);
/** Set the source landmarks list. */
virtual void
SetSourceLandmarks(PointSetType *);
/** Get the target landmarks list, which we will denote \f$ q \f$. */
itkGetModifiableObjectMacro(TargetLandmarks, PointSetType);
/** Set the target landmarks list. */
virtual void
SetTargetLandmarks(PointSetType *);
/** Get the displacements list, which we will denote \f$ d \f$,
* where \f$ d_i = q_i - p_i \f$.
*/
itkGetModifiableObjectMacro(Displacements, VectorSetType);
/** Compute W matrix. */
void
ComputeWMatrix();
/** Compute L matrix inverse. */
void
ComputeLInverse();
/** Compute the position of point in the new space */
OutputPointType
TransformPoint(const InputPointType & thisPoint) const override;
/** These vector transforms are not implemented for this transform. */
OutputVectorType
TransformVector(const InputVectorType &) const override
{
itkExceptionMacro("TransformVector(const InputVectorType &) is not implemented for KernelTransform");
}
OutputVnlVectorType
TransformVector(const InputVnlVectorType &) const override
{
itkExceptionMacro("TransformVector(const InputVnlVectorType &) is not implemented for KernelTransform");
}
OutputCovariantVectorType
TransformCovariantVector(const InputCovariantVectorType &) const override
{
itkExceptionMacro(
"TransformCovariantVector(const InputCovariantVectorType &) is not implemented for KernelTransform");
}
/** Compute the Jacobian of the transformation. */
void
GetJacobian(const InputPointType &, JacobianType &, NonZeroJacobianIndicesType &) const override;
/** Set the Transformation Parameters to be an identity transform. */
virtual void
SetIdentity();
/** Set the Transformation Parameters and update the internal transformation.
* The parameters represent the source landmarks. Each landmark point is represented
* by NDimensions doubles. All the landmarks are concatenated to form one flat
* Array<double>.
*/
void
SetParameters(const ParametersType &) override;
/** Set Transform Fixed Parameters:
* To support the transform file writer this function was
* added to set the target landmarks similar to the
* SetParameters function setting the source landmarks
*/
void
SetFixedParameters(const ParametersType &) override;
/** Update the Parameters array from the landmarks coordinates. */
virtual void
UpdateParameters();
/** Get the Transformation Parameters - Gets the source landmarks. */
const ParametersType &
GetParameters() const override;
/** Get Transform Fixed Parameters - Gets the target landmarks. */
const ParametersType &
GetFixedParameters() const override;
/** Stiffness of the spline. A stiffness of zero results in the
* standard interpolating spline. A non-zero stiffness allows the
* spline to approximate rather than interpolate the landmarks.
* Stiffness values are usually rather small, typically in the range
* of 0.001 to 0.1. The approximating spline formulation is based on
* the short paper by R. Sprengel, K. Rohr, H. Stiehl. "Thin-Plate
* Spline Approximation for Image Registration". In 18th
* International Conference of the IEEE Engineering in Medicine and
* Biology Society. 1996.
*/
virtual void
SetStiffness(double stiffness)
{
this->m_Stiffness = stiffness > 0 ? stiffness : 0.0;
this->m_LMatrixComputed = false;
this->m_LInverseComputed = false;
this->m_WMatrixComputed = false;
}
itkGetConstMacro(Stiffness, double);
/** This method makes only sense for the ElasticBody splines.
* Declare here, so that you can always call it if you don't know
* the type of kernel beforehand. It will be overridden in the
* ElasticBodySplineKernelTransform and in the
* ElasticBodyReciprocalSplineKernelTransform.
*/
virtual void
SetAlpha(TScalarType itkNotUsed(Alpha))
{}
/** This method makes only sense for the ElasticBody splines.
* Declare here, so that you can always call it if you don't know
* the type of kernel beforehand. It will be overridden in the
* ElasticBodySplineKernelTransform and in the
* ElasticBodyReciprocalSplineKernelTransform.
*/
itkSetMacro(PoissonRatio, TScalarType);
virtual const TScalarType
GetPoissonRatio() const
{
return this->m_PoissonRatio;
}
/** Matrix inversion by SVD or QR decomposition. */
itkSetMacro(MatrixInversionMethod, std::string);
itkGetConstReferenceMacro(MatrixInversionMethod, std::string);
/** Must be provided. */
void
GetSpatialJacobian(const InputPointType &, SpatialJacobianType &) const override
{
itkExceptionMacro("Not implemented for KernelTransform2");
}
void
GetSpatialHessian(const InputPointType &, SpatialHessianType &) const override
{
itkExceptionMacro("Not implemented for KernelTransform2");
}
void
GetJacobianOfSpatialJacobian(const InputPointType &,
JacobianOfSpatialJacobianType &,
NonZeroJacobianIndicesType &) const override
{
itkExceptionMacro("Not implemented for KernelTransform2");
}
void
GetJacobianOfSpatialJacobian(const InputPointType &,
SpatialJacobianType &,
JacobianOfSpatialJacobianType &,
NonZeroJacobianIndicesType &) const override
{
itkExceptionMacro("Not implemented for KernelTransform2");
}
void
GetJacobianOfSpatialHessian(const InputPointType &,
JacobianOfSpatialHessianType &,
NonZeroJacobianIndicesType &) const override
{
itkExceptionMacro("Not implemented for KernelTransform2");
}
void
GetJacobianOfSpatialHessian(const InputPointType &,
SpatialHessianType &,
JacobianOfSpatialHessianType &,
NonZeroJacobianIndicesType &) const override
{
itkExceptionMacro("Not implemented for KernelTransform2");
}
protected:
KernelTransform2();
~KernelTransform2() override;
void
PrintSelf(std::ostream & os, Indent indent) const override;
public:
/** 'G' matrix typedef. */
using GMatrixType = vnl_matrix_fixed<TScalarType, NDimensions, NDimensions>;
/** 'L' matrix typedef. */
using LMatrixType = vnl_matrix<TScalarType>;
/** 'K' matrix typedef. */
using KMatrixType = vnl_matrix<TScalarType>;
/** 'P' matrix typedef. */
using PMatrixType = vnl_matrix<TScalarType>;
/** 'Y' matrix typedef. */
using YMatrixType = vnl_matrix<TScalarType>;
/** 'W' matrix typedef. */
using WMatrixType = vnl_matrix<TScalarType>;
/** 'D' matrix typedef. Deformation component */
using DMatrixType = vnl_matrix<TScalarType>;
/** 'A' matrix typedef. Rotational part of the Affine component */
using AMatrixType = vnl_matrix_fixed<TScalarType, NDimensions, NDimensions>;
/** 'B' matrix typedef. Translational part of the Affine component */
using BMatrixType = vnl_vector_fixed<TScalarType, NDimensions>;
/** Row matrix typedef. */
using RowMatrixType = vnl_matrix_fixed<TScalarType, 1, NDimensions>;
/** Column matrix typedef. */
using ColumnMatrixType = vnl_matrix_fixed<TScalarType, NDimensions, 1>;
/** The list of source landmarks, denoted 'p'. */
PointSetPointer m_SourceLandmarks{};
/** The list of target landmarks, denoted 'q'. */
PointSetPointer m_TargetLandmarks{};
protected:
/** Compute G(x)
* This is essentially the kernel of the transform.
* By overriding this method, we can obtain (among others):
* Elastic body spline
* Thin plate spline
* Volume spline.
*/
virtual void
ComputeG(const InputVectorType & landmarkVector, GMatrixType & GMatrix) const;
/** Compute a G(x) for a point to itself (i.e. for the block
* diagonal elements of the matrix K. Parameter indicates for which
* landmark the reflexive G is to be computed. The default
* implementation for the reflexive contribution is a diagonal
* matrix where the diagonal elements are the stiffness of the
* spline.
*/
virtual void
ComputeReflexiveG(PointsIterator, GMatrixType & GMatrix) const;
/** Compute the contribution of the landmarks weighted by the kernel
* function to the global deformation of the space.
*/
virtual void
ComputeDeformationContribution(const InputPointType & inputPoint, OutputPointType & result) const;
/** Compute K matrix. */
void
ComputeK();
/** Compute L matrix. */
void
ComputeL();
/** Compute P matrix. */
void
ComputeP();
/** Compute Y matrix. */
void
ComputeY();
/** Compute displacements \f$ q_i - p_i \f$. */
void
ComputeD();
/** Reorganize the components of W into D (deformable), A (rotation part
* of affine) and B (translational part of affine ) components.
* \warning This method release the memory of the W Matrix.
*/
void
ReorganizeW();
/** Stiffness parameter. */
double m_Stiffness{};
/** The list of displacements.
* d[i] = q[i] - p[i];
*/
VectorSetPointer m_Displacements{};
/** The L matrix. */
LMatrixType m_LMatrix{};
/** The inverse of L, which we also cache. */
LMatrixType m_LMatrixInverse{};
/** The K matrix. */
KMatrixType m_KMatrix{};
/** The P matrix. */
PMatrixType m_PMatrix{};
/** The Y matrix. */
YMatrixType m_YMatrix{};
/** The W matrix. */
WMatrixType m_WMatrix{};
/** The Deformation matrix.
* This is an auxiliary matrix that will hold the Deformation (non-affine)
* part of the transform. Those are the coefficients that will multiply the
* Kernel function.
*/
DMatrixType m_DMatrix{};
/** Rotational/Shearing part of the Affine component of the Transformation. */
AMatrixType m_AMatrix{};
/** Translational part of the Affine component of the Transformation. */
BMatrixType m_BVector{};
/** The G matrix.
* It used to be mutable because m_GMatrix was made an ivar only to avoid
* copying the matrix at return time but this is not necessary.
* SK: we don't need this matrix anymore as a member.
*/
// GMatrixType m_GMatrix;
/** Has the W matrix been computed? */
bool m_WMatrixComputed{};
/** Has the L matrix been computed? */
bool m_LMatrixComputed{};
/** Has the L inverse matrix been computed? */
bool m_LInverseComputed{};
/** Has the L matrix decomposition been computed? */
bool m_LMatrixDecompositionComputed{};
/** Decompositions, needed for the L matrix.
* These decompositions are cached for performance reasons during registration.
* During registration, in every iteration SetParameters() is called, which in
* turn calls ComputeWMatrix(). The L matrix is not changed however, and therefore
* it is not needed to redo the decomposition.
*/
using SVDDecompositionType = vnl_svd<ScalarType>;
using QRDecompositionType = vnl_qr<ScalarType>;
SVDDecompositionType * m_LMatrixDecompositionSVD{};
QRDecompositionType * m_LMatrixDecompositionQR{};
/** Identity matrix. */
IMatrixType m_I{};
/** Precomputed nonzero Jacobian indices (simply all params) */
NonZeroJacobianIndicesType m_NonZeroJacobianIndices{};
/** The Jacobian can be computed much faster for some of the
* derived kerbel transforms, most notably the TPS.
*/
bool m_FastComputationPossible{};
private:
// Private using-declarations, to avoid `-Woverloaded-virtual` warnings from GCC (GCC 11.4).
using Superclass::TransformCovariantVector;
using Superclass::TransformVector;
TScalarType m_PoissonRatio{};
/** Using SVD or QR decomposition. */
std::string m_MatrixInversionMethod{};
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkKernelTransform2.hxx"
#endif
#endif // itkKernelTransform2_h
|