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 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
|
/*=========================================================================
*
* 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.
*
*=========================================================================*/
#ifndef itkImpactImageToImageMetric_h
#define itkImpactImageToImageMetric_h
#include "itkAdvancedImageToImageMetric.h"
#include "itkBSplineInterpolateImageFunction.h"
#include "itkBSplineInterpolateVectorImageFunction.h"
#include "itkImpactModelConfiguration.h"
#include "ImpactTensorUtils.h"
#include "ImpactLoss.h"
#include <torch/script.h>
#include <torch/torch.h>
#include <string>
#include <vector>
#include <random>
namespace itk
{
/**
* \class ImpactImageToImageMetric
* \brief A semantic similarity metric for multimodal image registration based on deep learning features.
*
* This class define a loss by compares the fixed and moving images using high-level semantic representations
* extracted from pretrained deep learning models, rather than relying on raw pixel intensities
* or handcrafted features.
*
* \author V. Boussot, Univ. Rennes, INSERM, LTSI- UMR 1099, F-35000 Rennes, France
* \note This work was funded by the French National Research Agency as part of the VATSop project (ANR-20-CE19-0015).
* \note If you use the Impact anywhere we would appreciate if you cite the following article:\n
* V. Boussot et al., IMPACT: A Generic Semantic Loss for Multimodal Medical Image Registration, arXiv preprint
* arXiv:2503.24121 (2025). https://doi.org/10.48550/arXiv.2503.24121
*
* \ingroup RegistrationMetrics
* \ingroup Metrics
*/
template <typename TFixedImage, typename TMovingImage>
class ITK_TEMPLATE_EXPORT ImpactImageToImageMetric : public AdvancedImageToImageMetric<TFixedImage, TMovingImage>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(ImpactImageToImageMetric);
/** Standard class typedefs. */
using Self = ImpactImageToImageMetric;
using Superclass = AdvancedImageToImageMetric<TFixedImage, TMovingImage>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(ImpactImageToImageMetric, AdvancedImageToImageMetric);
/** Typedefs from the superclass. */
using typename Superclass::CoordinateRepresentationType;
using typename Superclass::MovingImageType;
using typename Superclass::MovingImagePixelType;
using typename Superclass::MovingImageConstPointer;
using typename Superclass::FixedImageType;
using typename Superclass::FixedImageConstPointer;
using typename Superclass::FixedImageRegionType;
using typename Superclass::TransformType;
using typename Superclass::TransformPointer;
using typename Superclass::InputPointType;
using typename Superclass::OutputPointType;
using typename Superclass::TransformJacobianType;
using typename Superclass::NumberOfParametersType;
using typename Superclass::InterpolatorType;
using typename Superclass::InterpolatorPointer;
using typename Superclass::RealType;
using typename Superclass::GradientPixelType;
using typename Superclass::GradientImageType;
using typename Superclass::GradientImagePointer;
using typename Superclass::FixedImageMaskType;
using typename Superclass::FixedImageMaskPointer;
using typename Superclass::MovingImageMaskType;
using typename Superclass::MovingImageMaskPointer;
using typename Superclass::MeasureType;
using typename Superclass::DerivativeType;
using typename Superclass::DerivativeValueType;
using typename Superclass::ParametersType;
using typename Superclass::FixedImagePixelType;
using typename Superclass::MovingImageRegionType;
using typename Superclass::ImageSamplerType;
using typename Superclass::ImageSamplerPointer;
using typename Superclass::ImageSampleContainerType;
using typename Superclass::ImageSampleContainerPointer;
using typename Superclass::FixedImageLimiterType;
using typename Superclass::MovingImageLimiterType;
using typename Superclass::FixedImageLimiterOutputType;
using typename Superclass::MovingImageLimiterOutputType;
using typename Superclass::MovingImageDerivativeScalesType;
using typename Superclass::ThreadInfoType;
/** The fixed image dimension. */
itkStaticConstMacro(FixedImageDimension, unsigned int, FixedImageType::ImageDimension);
/** The moving image dimension. */
itkStaticConstMacro(MovingImageDimension, unsigned int, MovingImageType::ImageDimension);
/** Compute the similarity value (loss) for a given transformation parameter set.
* This method is intended for use with single-valued optimizers in a single-threaded context.
* It is typically used in testing or debugging scenarios.
*/
virtual MeasureType
GetValueSingleThreaded(const ParametersType & parameters) const;
/** Compute the similarity value (loss) for a given transformation parameter set.
* This is the main entry point for single-valued optimizers and is multi-threaded internally.
* It aggregates the contribution from all threads.
*/
MeasureType
GetValue(const ParametersType & parameters) const override;
/** Compute the gradient (derivative) of the similarity value with respect to transformation parameters.
* Used in gradient-based optimization methods. Internally supports multi-threaded computation.
*/
void
GetDerivative(const ParametersType & parameters, DerivativeType & derivative) const override;
/** Compute both the similarity value and its gradient in a single-threaded context.
*/
void
GetValueAndDerivativeSingleThreaded(const ParametersType & parameters,
MeasureType & value,
DerivativeType & derivative) const;
/** Compute both the similarity value and its gradient in a multi-threaded context.
* This is the main function called by optimizers requiring both value and derivative,
* and it supports full parallel execution.
*/
void
GetValueAndDerivative(const ParametersType & parameters,
MeasureType & value,
DerivativeType & derivative) const override;
/**
* Initializes the metric and loads models, interpolators, and feature map settings.
* Called before the optimization loop starts. Ensures all configuration dependencies are resolved.
*/
void
Initialize() override;
/** Set/Get the list of TorchScript model configurations used to extract features from the fixed image.
* Each model can target a different resolution, architecture, or semantic level.
*/
itkSetMacro(FixedModelsConfiguration, std::vector<ImpactModelConfiguration>);
itkGetConstReferenceMacro(FixedModelsConfiguration, std::vector<ImpactModelConfiguration>);
/** Set/Get the list of TorchScript model configurations used to extract features from the moving image.
* Allows using different models for fixed and moving images to support asymmetric or multimodal setups.
*/
itkSetMacro(MovingModelsConfiguration, std::vector<ImpactModelConfiguration>);
itkGetConstReferenceMacro(MovingModelsConfiguration, std::vector<ImpactModelConfiguration>);
/** Set/Get the subset of feature indices to be used in the loss computation.
* This allows dimensionality reduction or focusing on the most informative channels.
*/
itkSetMacro(SubsetFeatures, std::vector<unsigned int>);
itkGetConstMacro(SubsetFeatures, std::vector<unsigned int>);
/** Set/Get the weights applied to each layer's loss contribution.
* Useful for balancing the influence of layers with different semantic granularity.
*/
itkSetMacro(LayersWeight, std::vector<float>);
itkGetConstMacro(LayersWeight, std::vector<float>);
/** Set/Get the type of loss function used for each layer (e.g., "l1", "cosine", "ncc").
* Supports heterogeneous losses across layers to adapt to the nature of each feature representation.
*/
itkSetMacro(Distance, std::vector<std::string>);
itkGetConstMacro(Distance, std::vector<std::string>);
/** Set/Get the number of principal components to keep after applying PCA to the feature maps.
* Set to 0 to disable PCA. Reduces dimensionality and improve runtime.
*/
itkSetMacro(PCA, std::vector<unsigned int>);
itkGetConstMacro(PCA, std::vector<unsigned int>);
/** Set/Get the device on which all model inference and tensor operations are performed.
* Example: torch::Device(torch::kCUDA, 0) for GPU 0.
*/
itkSetMacro(Device, torch::Device);
itkGetConstMacro(Device, torch::Device);
/**
* Set/Get whether mixed precision (float16/float32) should be used during model inference.
*/
itkSetMacro(UseMixedPrecision, bool);
itkGetConstMacro(UseMixedPrecision, bool);
/** Set/Get whether the extracted feature maps should be written to disk (for inspection or debugging).
* Useful for visualizing the intermediate representations used by the metric.
*/
itkSetMacro(WriteFeatureMaps, bool);
itkGetConstMacro(WriteFeatureMaps, bool);
/** Set/Get the directory path where feature maps will be written if WriteFeatureMaps is true.
* The path will be created if it does not exist.
*/
itkSetMacro(FeatureMapsPath, std::string);
itkGetConstMacro(FeatureMapsPath, std::string);
/** Set/Get the mode of operation: "Jacobian", "Static", or "Dynamic".
* - "Jacobian": online patch extraction with gradient backpropagation.
* - "Static": precomputed full feature maps.
*/
itkSetMacro(Mode, std::string);
itkGetConstMacro(Mode, std::string);
/** Set/Get the current resolution level
*/
itkSetMacro(CurrentLevel, unsigned int);
itkGetConstMacro(CurrentLevel, unsigned int);
/** Set/Get the manual seed
*/
itkSetMacro(Seed, unsigned int);
itkGetConstMacro(Seed, unsigned int);
/** Set/Get how often (in number of optimizer iterations) the feature maps should be updated.
* A value of 0 disables updates (useful in static mode). Positive values enable periodic refreshes.
*/
itkSetMacro(FeaturesMapUpdateInterval, int);
itkGetConstMacro(FeaturesMapUpdateInterval, int);
protected:
ImpactImageToImageMetric();
~ImpactImageToImageMetric() override = default;
/**
* Initializes per-thread loss structures and ensures thread safety for parallel execution.
* Overrides superclass method because the metric uses its own loss aggregation system.
*/
void
InitializeThreadingParameters() const override;
/** Protected Typedefs ******************/
/**
* \brief Thread-local structure for accumulating loss values and gradients for each layer.
*
* This structure encapsulates one loss object per output layer (defined by the layersMask), enabling
* multi-layer loss computation and weighted aggregation. It allows efficient computation of the final loss
* and its gradients by keeping track of the contributions from each layer.
*
* \details This structure is designed to be used in a multi-threaded environment, where each thread
* maintains its own instance to store intermediate results, ensuring thread-safety during parallel loss
* and gradient computations.
*/
struct LossPerThreadStruct
{
std::vector<std::unique_ptr<ImpactLoss::Loss>> m_Losses;
std::vector<float> m_LayersWeight;
SizeValueType m_NumberOfPixelsCounted;
int m_NumberOfParameters;
std::mt19937 m_RandomGenerator;
void
init(std::vector<std::string> distanceName, std::vector<float> layersWeight, unsigned int seed)
{
if (seed > 0)
{
m_RandomGenerator = std::mt19937(seed);
}
else
{
m_RandomGenerator = std::mt19937(time(nullptr));
}
m_LayersWeight = layersWeight;
for (std::string name : distanceName)
{
m_Losses.push_back(ImpactLoss::LossFactory::Instance().Create(name));
}
}
void
setNumberOfParameters(int numberOfParameters)
{
m_NumberOfParameters = numberOfParameters;
for (int l = 0; l < m_LayersWeight.size(); ++l)
{
m_Losses[l]->setNumberOfParameters(numberOfParameters);
}
}
void
reset()
{
m_NumberOfPixelsCounted = 0;
for (std::unique_ptr<ImpactLoss::Loss> & loss : m_Losses)
{
loss->reset();
}
}
double
GetValue()
{
MeasureType value = MeasureType{};
for (int l = 0; l < m_LayersWeight.size(); ++l)
{
value += m_LayersWeight[l] * m_Losses[l]->GetValue(static_cast<double>(m_NumberOfPixelsCounted));
}
return value;
}
DerivativeType
GetDerivative()
{
DerivativeType derivative = DerivativeType(m_NumberOfParameters);
derivative.Fill(DerivativeValueType{});
for (int l = 0; l < m_LayersWeight.size(); ++l)
{
torch::Tensor d = m_LayersWeight[l] * m_Losses[l]->GetDerivative(static_cast<double>(m_NumberOfPixelsCounted));
for (int i = 0; i < d.size(0); ++i)
{
derivative[i] += d[i].item<float>();
}
}
return derivative;
}
LossPerThreadStruct &
operator+=(const LossPerThreadStruct & other)
{
const auto * lossPerThreadStructOther = dynamic_cast<const LossPerThreadStruct *>(&other);
if (lossPerThreadStructOther)
{
m_NumberOfPixelsCounted += lossPerThreadStructOther->m_NumberOfPixelsCounted;
for (int i = 0; i < lossPerThreadStructOther->m_Losses.size(); ++i)
{
*m_Losses[i] += *lossPerThreadStructOther->m_Losses[i];
}
}
return *this;
}
};
/** Typedefs inherited from superclass */
using typename Superclass::FixedImageIndexType;
using typename Superclass::FixedImageIndexValueType;
using typename Superclass::MovingImageIndexType;
using typename Superclass::FixedImagePointType;
using typename Superclass::MovingImagePointType;
using typename Superclass::MovingImageContinuousIndexType;
using typename Superclass::BSplineInterpolatorType;
using typename Superclass::MovingImageDerivativeType;
using typename Superclass::NonZeroJacobianIndicesType;
/**
* \brief Checks if a patch centered at the given fixed image point is valid for sampling.
*
* This function verifies that a patch, defined by the `patchIndex`, centered at the given fixed image
* point, is valid for sampling. It ensures that all transformed points of the patch remain inside
* the domain of the moving image, or within the moving mask if one is defined.
* It is used to validate patches before they are processed in the similarity metric.
*
* \param fixedImageCenterCoordinate The center coordinate of the patch in the fixed image.
* \param patchIndex A layout of the patch, defining the indices of the region to sample around
* the fixed image point.
*
* \return `true` if the patch is valid for sampling, meaning all transformed points are inside the
* moving image domain or mask; `false` otherwise.
*/
bool
SampleCheck(const FixedImagePointType & fixedImageCenterCoordinate,
const std::vector<std::vector<float>> & patchIndex) const;
/**
* \brief Checks if the fixed image point lies within valid bounds for sampling.
*
* This function checks if a fixed image point is within the valid bounds for sampling.
* It is used to validate individual points before they are processed in the similarity metric.
*
* \param fixedImageCenterCoordinate The coordinate of the fixed image point to validate.
*
* \return `true` if the fixed image point is within valid bounds for sampling, `false` otherwise.
*/
bool
SampleCheck(const FixedImagePointType & fixedImageCenterCoordinate) const;
/**
* \brief Computes the similarity value contribution for a given thread.
*
* This method is called in parallel across multiple threads. Each thread calculates
* and accumulates its partial loss contribution to the overall similarity value.
*
* \param threadID The unique identifier of the thread processing the similarity calculation.
*/
void
ThreadedGetValue(ThreadIdType threadID) const override;
/**
* \brief Combines the similarity values computed by all threads.
*
* This method aggregates the loss contributions stored in each thread’s `LossPerThreadStruct`
* and combines them into a global scalar value. This aggregated value is then used by the optimizer
* during the optimization process.
*
* \param value The scalar value to store the aggregated similarity result.
*/
void
AfterThreadedGetValue(MeasureType & value) const override;
/**
* \brief Computes both the similarity value and its gradient for a given thread.
*
* Each thread computes the semantic loss and its gradient with respect to the transformation parameters.
*
* \param threadID The unique identifier of the thread performing the calculation.
*/
void
ThreadedGetValueAndDerivative(ThreadIdType threadID) const override;
/**
* \brief Combines the values and gradients computed by all threads.
*
* This method performs the final reduction step to aggregate the values and gradients
* computed by each thread into global loss and gradient vectors. These aggregated results
* are then used in the optimization process.
*
* \param value The global loss value computed by combining the contributions from all threads.
* \param derivative The global gradient vector computed by combining the gradients from all threads.
*/
void
AfterThreadedGetValueAndDerivative(MeasureType & value, DerivativeType & derivative) const override;
/**
* \brief Computes the semantic similarity value using the current transform parameters.
*
* This method computes the loss at all sampled points using the current transformation parameters,
* without calculating derivatives. It performs patch-based inference and feature comparison in
* Jacobian mode.
*
* \param fixedPoints A vector of sampled points in the fixed image.
* \param loss The loss objects (one per layer) where the values will be accumulated.
*
* \return The number of valid samples used in the similarity computation.
*/
unsigned int
ComputeValue(const std::vector<FixedImagePointType> & fixedPoints, LossPerThreadStruct & loss) const;
/**
* \brief Computes the semantic similarity value in static mode (using precomputed feature maps).
*
* Unlike `ComputeValue()`, this method uses pre-extracted static feature maps for both the
* fixed and moving images, avoiding repeated forward passes through the model
*
* \param fixedPoints A vector of sampled points in the fixed image.
* \param loss The loss objects (one per semantic layer) where the values will be accumulated.
*
* \return The number of valid samples used in the similarity computation.
*/
unsigned int
ComputeValueStatic(const std::vector<FixedImagePointType> & fixedPoints, LossPerThreadStruct & loss) const;
/**
* \brief Computes both the semantic similarity value and its derivative using Jacobian mode.
*
* This method computes both the similarity value and its derivative (gradient)
* by backpropagating through the model. This allows the metric to assess the sensitivity to
* transformation parameters, which is crucial for gradient-based optimization.
*
* \param fixedPoints A vector of sampled points in the fixed image.
* \param loss Loss objects to store both the values and gradients for each semantic layer.
*
* \return The number of valid samples used in the similarity and gradient computation.
*/
unsigned int
ComputeValueAndDerivativeJacobian(const std::vector<FixedImagePointType> & fixedPoints,
LossPerThreadStruct & loss) const;
/**
* \brief Computes the value and derivative in static mode (using precomputed features).
*
* This method computes the similarity value and its derivative (gradient)
* using precomputed feature maps. Gradients are computed via the chain rule, using the
* interpolated feature fields rather than backpropagating through the model.
*
* \param fixedPoints A vector of sampled points in the fixed image.
* \param loss Loss objects to store both the values and gradients for each semantic layer.
*
* \return The number of valid samples used in the similarity and gradient computation.
*/
unsigned int
ComputeValueAndDerivativeStatic(const std::vector<FixedImagePointType> & fixedPoints,
LossPerThreadStruct & loss) const;
/**
* \brief Updates the fixed feature maps in static mode.
*
* This method re-extracts deep features from the images using the TorchScript models
* when transitioning to a new pyramid level or after a specified feature update interval.
* This ensures that the feature maps are kept up-to-date for the registration process.
*/
void
UpdateFixedFeaturesMaps();
/**
* \brief Updates the moving feature maps in static mode.
*
* This method performs the same operation as `UpdateFixedFeaturesMaps()`, but it applies to the moving image.
* It re-extracts deep features from the moving image using the TorchScript models, ensuring that the
* feature maps are updated when transitioning to a new pyramid level or after a feature update interval.
*/
void
UpdateMovingFeaturesMaps();
private:
/** Interpolator for fixed image intensities, using B-spline of order 3 (double precision). */
using FixedInterpolatorType = BSplineInterpolateImageFunction<FixedImageType, CoordinateRepresentationType, double>;
/** Feature maps are stored as VectorImages of floats with same dimension as fixed image. */
using FeaturesImageType = itk::VectorImage<float, FixedImageDimension>;
/** Interpolator for feature maps (vector-valued), using scalar B-spline interpolation. */
using FeaturesInterpolatorType = BSplineInterpolateVectorImageFunction<
FeaturesImageType,
BSplineInterpolateImageFunction<itk::Image<float, FixedImageDimension>, CoordinateRepresentationType, float>>;
/**
* \struct FeaturesMaps
* \brief Encapsulates a feature map image and its associated interpolator.
*
* This structure holds both the feature map image and the corresponding interpolator, enabling
* the evaluation of feature vectors (and their derivatives) at arbitrary points in the image.
* It is designed to facilitate feature extraction and interpolation during image registration in static mode.
*/
struct FeaturesMaps
{
typename FeaturesImageType::Pointer m_FeaturesMaps;
FeaturesInterpolatorType m_FeaturesMapsInterpolator;
FeaturesMaps(typename FeaturesImageType::Pointer featuresMaps)
: m_FeaturesMaps(featuresMaps)
{
m_FeaturesMapsInterpolator = FeaturesInterpolatorType();
m_FeaturesMapsInterpolator.SetInputImage(featuresMaps);
}
};
using FeaturesMaps = typename ImpactImageToImageMetric<TFixedImage, TMovingImage>::FeaturesMaps;
/**
* \brief Extracts a fixed image patch tensor centered at a given point using the precomputed patch index.
*
* This method extracts a patch from the fixed image centered at the specified point,
* based on the provided `patchIndex` and `patchSize`. Interpolation is performed using
* the fixed image interpolator to sample the feature values at the specified coordinates.
*
* \param fixedImageCenterCoordinate The coordinate of the center point of the patch in the fixed image.
* \param patchIndex A vector defining the relative indices for extracting the patch.
* \param patchSize The size of the patch to extract.
*
* \return A tensor representing the extracted patch from the fixed image.
*/
torch::Tensor
EvaluateFixedImagesPatchValue(const FixedImagePointType & fixedImageCenterCoordinate,
const std::vector<std::vector<float>> & patchIndex,
const std::vector<int64_t> & patchSize) const;
/**
* \brief Extracts a moving image patch tensor (intensity values) corresponding to a fixed point.
*
* This method extracts a patch from the moving image, centered at the corresponding transformed
* point from the fixed image. The extraction is performed using the provided transform and
* the moving image interpolator to sample intensity values at the transformed coordinates.
*
* \param fixedImageCenterCoordinate The coordinate of the center point in the fixed image.
* \param patchIndex A 2D vector defining the relative indices for extracting the patch.
* \param patchSize The size of the patch to extract.
*
* \return A tensor representing the extracted patch from the moving image.
*/
torch::Tensor
EvaluateMovingImagesPatchValue(const FixedImagePointType & fixedImageCenterCoordinate,
const std::vector<std::vector<float>> & patchIndex,
const std::vector<int64_t> & patchSize) const;
/**
* \brief Extracts moving image patch values and computes the spatial Jacobians with respect to image coordinates.
*
* This method extracts a patch from the moving image centered at the corresponding transformed
* point from the fixed image. It also computes the image gradient. This is used in Jacobian mode to enable
* gradient computation via the chain rule during optimization.
*
* \param fixedImageCenterCoordinate The coordinate of the center point in the fixed image.
* \param movingImagesPatchesJacobians A tensor to store the computed Jacobians (image gradients) for each patch.
* \param patchIndex A vector defining the relative indices for extracting the patch.
* \param patchSize The size of the patch to extract.
* \param s An index to determine where to store the computed Jacobians in `movingImagesPatchesJacobians`.
*
* \return A tensor representing the extracted patch from the moving image.
*/
torch::Tensor
EvaluateMovingImagesPatchValuesAndJacobians(const FixedImagePointType & fixedImageCenterCoordinate,
torch::Tensor & movingImagesPatchesJacobians,
const std::vector<std::vector<float>> & patchIndex,
const std::vector<int64_t> & patchSize,
int s) const;
/**
* \brief Generates valid patch indices and filters out invalid points.
*
* This method takes a list of fixed points and model configurations to generate patch indices
* for each point. It filters out points that lie outside the mask or image boundaries, returning
* only the valid fixed points. The valid patch indices are stored in `patchIndex`.
*
* \param modelConfig A vector of model configurations, each specifying the properties of the models used.
* \param randomGenerator A random number generator used for random sampling in the patch generation process.
* \param fixedPointsTmp A vector of fixed points to generate patch indices for.
* \param patchIndex A reference to a 4D vector to store the generated patch indices for each valid fixed point.
*
* \return A vector of valid fixed points that are inside the mask or boundaries of the image.
*/
template <typename ImagePointType>
std::vector<ImagePointType>
GeneratePatchIndex(const std::vector<ImpactModelConfiguration> & modelConfig,
std::mt19937 & randomGenerator,
const std::vector<ImagePointType> & fixedPointsTmp,
std::vector<std::vector<std::vector<std::vector<float>>>> & patchIndex) const;
/** TorchScript model configurations for fixed and moving image feature extraction. */
std::vector<ImpactModelConfiguration> m_FixedModelsConfiguration;
std::vector<ImpactModelConfiguration> m_MovingModelsConfiguration;
std::vector<unsigned int> m_SubsetFeatures;
std::vector<unsigned int> m_PCA;
std::vector<float> m_LayersWeight;
std::vector<std::string> m_Distance;
int m_FeaturesMapUpdateInterval;
std::string m_Mode;
bool m_WriteFeatureMaps;
std::string m_FeatureMapsPath;
torch::Device m_Device = torch::Device(torch::kCPU);
bool m_UseMixedPrecision;
unsigned int m_CurrentLevel;
unsigned int m_Seed;
std::vector<FeaturesMaps> m_FixedFeaturesMaps;
std::vector<FeaturesMaps> m_MovingFeaturesMaps;
std::vector<torch::Tensor> m_PrincipalComponents;
std::vector<std::vector<unsigned int>> m_FeaturesIndexes;
/**
* Interpolator for fixed image intensity values, set once at initialization.
* Uses 3rd-order B-spline interpolation.
*/
InterpolatorPointer m_FixedInterpolator = [this] {
const auto interpolator = FixedInterpolatorType::New();
interpolator->SetSplineOrder(3);
return interpolator;
}();
/**
* \brief Retrieves a subset of features based on the provided indices.
*
* This method selects a subset of features from the full set of features, based on the indices
* provided in `featuresIndex`. It uses a random number generator for sampling a subset of the
* features, ensuring that the selected features are randomly chosen.
*
* \param featuresIndex A vector of indices representing the features to be considered.
* \param randomGenerator A random number generator used for sampling the features.
* \param n The number of features to select from the provided list of indices.
*
* \return A vector containing the indices of the randomly selected features.
*/
std::vector<unsigned int>
GetSubsetOfFeatures(const std::vector<unsigned int> & featuresIndex, std::mt19937 & randomGenerator, int n) const;
/** Thread-safe wrapper for per-thread loss computation (padded to avoid false sharing). */
itkPadStruct(ITK_CACHE_LINE_ALIGNMENT, LossPerThreadStruct, PaddedLossPerThreadStruct);
itkAlignedTypedef(ITK_CACHE_LINE_ALIGNMENT, PaddedLossPerThreadStruct, AlignedLossPerThreadStruct);
/** Per-thread loss structures, dynamically allocated during initialization. */
mutable std::unique_ptr<AlignedLossPerThreadStruct[]> m_LossThreadStruct{ nullptr };
mutable int m_LossThreadStructSize = 0;
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkImpactImageToImageMetric.hxx"
#endif
#endif // end #ifndef itkImpactImageToImageMetric_h
|