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
|
/*=========================================================================
*
* 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 itkCombinationImageToImageMetric_h
#define itkCombinationImageToImageMetric_h
#include "itkAdvancedImageToImageMetric.h"
#include "itkSingleValuedPointSetToPointSetMetric.h"
namespace itk
{
/** \class CombinationImageToImageMetric
* \brief Combines multiple metrics.
*
* This metric is meant to be used in the
* MultiMetricMultiResolutionImageRegistrationMethod.
*
* NB: while it may seem not logical that the SetInterpolator(arg)
* sets the interpolator in all submetrics whereas the
* GetInterpolator() returns GetInterpolator(0) it is logical.
* If you set the interpolator the same in all metrics, you will
* receive the correct interpolator with GetInterpolator(0).
* If you set the interpolator differently in all metrics, the most
* logical action is to return GetInterpolator(0) when GetInterpolator()
* is invoked.
*
* Note: If you use Set{Transform,Interpolator etc}(0) or
* Set{Transform,Interpolator}(), the member variables of the
* superclass m_{Transform,Interpolator} are set as well.
* So, it is not strictly necessary to reimplement the functions
* Get{Transform,Interpolator}(), which return Get{Transform,Interpolator}(0),
* which would result in the same as returning m_{Transform,Interpolator}
* anyway. However, if Metric[0] is changed externally
* the m_{Transform, Interpolator} are not up to date anymore. That's
* why we chose to reimplement the Get{Transform,Interpolator}()
* methods.
*
*
* \ingroup RegistrationMetrics
*
*/
template <class TFixedImage, class TMovingImage>
class ITK_TEMPLATE_EXPORT CombinationImageToImageMetric : public AdvancedImageToImageMetric<TFixedImage, TMovingImage>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(CombinationImageToImageMetric);
/** Standard class typedefs. */
using Self = CombinationImageToImageMetric;
using Superclass = AdvancedImageToImageMetric<TFixedImage, TMovingImage>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** Run-time type information (and related methods). */
itkTypeMacro(CombinationImageToImageMetric, AdvancedImageToImageMetric);
/** Define the New() method */
itkNewMacro(Self);
/** Constants for the image dimensions */
itkStaticConstMacro(MovingImageDimension, unsigned int, TMovingImage::ImageDimension);
itkStaticConstMacro(FixedImageDimension, unsigned int, TFixedImage::ImageDimension);
/** Typedefs from the superclass. */
using typename Superclass::CoordinateRepresentationType;
using typename Superclass::MovingImageType;
using typename Superclass::MovingImagePixelType;
// using typename Superclass::MovingImagePointer;
using typename Superclass::MovingImageConstPointer;
using typename Superclass::FixedImageType;
// using typename Superclass::FixedImagePointer;
using typename Superclass::FixedImageConstPointer;
using typename Superclass::FixedImageRegionType;
using TransformType = typename Superclass::AdvancedTransformType;
using TransformPointer = typename TransformType::Pointer;
using typename Superclass::InputPointType;
using typename Superclass::OutputPointType;
using typename Superclass::TransformParametersType;
using typename Superclass::TransformJacobianType;
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::ImageSamplerType;
using typename Superclass::ImageSamplerPointer;
using typename Superclass::ImageSampleContainerType;
using typename Superclass::ImageSampleContainerPointer;
using typename Superclass::FixedImageLimiterType;
using typename Superclass::FixedImageLimiterOutputType;
using typename Superclass::MovingImageLimiterType;
using typename Superclass::MovingImageLimiterOutputType;
using typename Superclass::ScalarType;
using typename Superclass::AdvancedTransformType;
*/
/** Typedefs for the metrics. */
using ImageMetricType = Superclass;
using ImageMetricPointer = typename ImageMetricType::Pointer;
using SingleValuedCostFunctionType = SingleValuedCostFunction;
using SingleValuedCostFunctionPointer = typename SingleValuedCostFunctionType::Pointer;
using FixedImagePixelType = typename FixedImageType::PixelType;
using MovingImageRegionType = typename MovingImageType::RegionType;
using MovingImageDerivativeScalesType = FixedArray<double, Self::MovingImageDimension>;
/** Typedef for the PointSetMetric. */
using FixedPointSetType = PointSet<CoordinateRepresentationType,
TFixedImage::ImageDimension,
DefaultStaticMeshTraits<CoordinateRepresentationType,
TFixedImage::ImageDimension,
TFixedImage::ImageDimension,
CoordinateRepresentationType,
CoordinateRepresentationType,
CoordinateRepresentationType>>;
using MovingPointSetType = PointSet<CoordinateRepresentationType,
TMovingImage::ImageDimension,
DefaultStaticMeshTraits<CoordinateRepresentationType,
TMovingImage::ImageDimension,
TMovingImage::ImageDimension,
CoordinateRepresentationType,
CoordinateRepresentationType,
CoordinateRepresentationType>>;
using PointSetMetricType = SingleValuedPointSetToPointSetMetric<FixedPointSetType, MovingPointSetType>;
/** Typedef for multi-threading. */
using typename Superclass::ThreadInfoType;
/**
* Get and set the metrics and their weights.
**/
/** Set the number of metrics to combine. */
void
SetNumberOfMetrics(unsigned int count);
/** Get the number of metrics to combine. */
itkGetConstMacro(NumberOfMetrics, unsigned int);
/** Set metric i. It may be a SingleValuedCostFunction, instead of
* a ImageToImageMetric, but the first one should be an
* ImageToImageMetric in all cases.
*/
void
SetMetric(SingleValuedCostFunctionType * metric, unsigned int pos);
/** Get metric i. */
SingleValuedCostFunctionType *
GetMetric(unsigned int count) const;
/** Set the weight for metric i. */
void
SetMetricWeight(double weight, unsigned int pos);
/** Get the weight for metric i. */
double
GetMetricWeight(unsigned int pos) const;
/** Set the relative weight for metric i. */
void
SetMetricRelativeWeight(double weight, unsigned int pos);
/** Get the relative weight for metric i. */
double
GetMetricRelativeWeight(unsigned int pos) const;
/** Set and Get the UseRelativeWeights variable. */
itkSetMacro(UseRelativeWeights, bool);
itkGetConstMacro(UseRelativeWeights, bool);
/** Select which metrics are used.
* This is useful in case you want to compute a certain measure, but not
* actually use it during the registration.
* By default all metrics that are set, are also used.
*/
void
SetUseMetric(const bool use, const unsigned int pos);
/** Use all metrics. */
void
SetUseAllMetrics();
/** Get if this metric is used. */
bool
GetUseMetric(const unsigned int pos) const;
/** Get the last computed value for metric i. */
MeasureType
GetMetricValue(unsigned int pos) const;
/** Get the last computed derivative for metric i. */
const DerivativeType &
GetMetricDerivative(unsigned int pos) const;
/** Get the last computed derivative magnitude for metric i. */
double
GetMetricDerivativeMagnitude(unsigned int pos) const;
/** Get the last computed computation time for metric i. */
double
GetMetricComputationTime(unsigned int pos) const;
/**
* Set/Get functions for the metric components
*/
/** Pass the transform to all sub metrics. */
void
SetTransform(TransformType * _arg) override;
/** Pass a transform to a specific metric.
* Only use this if you really know what you are doing.
*
* In fact, in general it makes no sense to specify a different
* transform for every metric, because in the GetValue/GetDerivative
* methods, the same set of parameters will be used in all cases.
* Also, SetTransformParameters and GetNumberOfParameters may give
* unpredictable results if you use this method. They only refer to
* the first transform.
*/
virtual void
SetTransform(TransformType * _arg, unsigned int pos);
/** Returns the transform set in a specific metric. If the submetric is a
* singlevalued costfunction a zero pointer will be returned.
*/
virtual const TransformType *
GetTransform(unsigned int pos) const;
/** Get the first transform. */
TransformType *
GetTransform() override
{
const auto metric = dynamic_cast<ImageMetricType *>(this->GetMetric(0));
return metric ? metric->GetTransform() : nullptr;
}
/** Get the first transform. Const overload. */
const TransformType *
GetTransform() const override
{
return this->GetTransform(0);
}
/** Pass the interpolator to all sub metrics. */
void
SetInterpolator(InterpolatorType * _arg) override;
/** Pass an interpolator to a specific metric */
virtual void
SetInterpolator(InterpolatorType * _arg, unsigned int pos);
/** Returns the interpolator set in a specific metric. If the submetric is
* a singlevalued costfunction a zero pointer will be returned.
*/
virtual const InterpolatorType *
GetInterpolator(unsigned int pos) const;
/** Get the first interpolator. */
InterpolatorType *
GetInterpolator() override
{
const auto metric = dynamic_cast<ImageMetricType *>(this->GetMetric(0));
return metric ? metric->GetInterpolator() : nullptr;
}
/** Get the first interpolator. Const overload. */
const InterpolatorType *
GetInterpolator() const override
{
return this->GetInterpolator(0);
}
/** Pass the fixed image to all sub metrics. */
void
SetFixedImage(const FixedImageType * _arg) override;
/** Pass a fixed image to a specific metric */
virtual void
SetFixedImage(const FixedImageType * _arg, unsigned int pos);
/** Returns the fixedImage set in a specific metric. If the
* submetric is a singlevalued costfunction a zero pointer will
* be returned */
virtual const FixedImageType *
GetFixedImage(unsigned int pos) const;
/** Return FixedImage 0 */
const FixedImageType *
GetFixedImage() const override
{
return this->GetFixedImage(0);
}
/** Pass the fixed image mask to all sub metrics. */
void
SetFixedImageMask(const FixedImageMaskType * _arg) override;
/** Pass a fixed image mask to a specific metric */
virtual void
SetFixedImageMask(const FixedImageMaskType * _arg, unsigned int pos);
/** Returns the fixedImageMask set in a specific metric. If the
* submetric is a singlevalued costfunction a zero pointer will
* be returned */
virtual const FixedImageMaskType *
GetFixedImageMask(unsigned int pos) const;
/** Return FixedImageMask 0 */
const FixedImageMaskType *
GetFixedImageMask() const override
{
return this->GetFixedImageMask(0);
}
/** Pass the fixed image region to all sub metrics. */
void
SetFixedImageRegion(const FixedImageRegionType _arg) override;
/** Pass a fixed image region to a specific metric. */
virtual void
SetFixedImageRegion(const FixedImageRegionType _arg, unsigned int pos);
/** Returns the fixedImageRegion set in a specific metric. If the
* submetric is a singlevalued costfunction a region with size zero will
* be returned */
virtual const FixedImageRegionType &
GetFixedImageRegion(unsigned int pos) const;
/** Return FixedImageRegion 0 */
const FixedImageRegionType &
GetFixedImageRegion() const override
{
return this->GetFixedImageRegion(0);
}
/** Pass the moving image to all sub metrics. */
void
SetMovingImage(const MovingImageType * _arg) override;
/** Pass a moving image to a specific metric */
virtual void
SetMovingImage(const MovingImageType * _arg, unsigned int pos);
/** Returns the movingImage set in a specific metric. If the
* submetric is a singlevalued costfunction a zero pointer will
* be returned */
virtual const MovingImageType *
GetMovingImage(unsigned int pos) const;
/** Return MovingImage 0 */
const MovingImageType *
GetMovingImage() const override
{
return this->GetMovingImage(0);
}
/** Pass the moving image mask to all sub metrics. */
void
SetMovingImageMask(const MovingImageMaskType * _arg) override;
/** Pass a moving image mask to a specific metric */
virtual void
SetMovingImageMask(const MovingImageMaskType * _arg, unsigned int pos);
/** Returns the movingImageMask set in a specific metric. If the
* submetric is a singlevalued costfunction a zero pointer will
* be returned */
virtual const MovingImageMaskType *
GetMovingImageMask(unsigned int pos) const;
/** Return MovingImageMask 0 */
const MovingImageMaskType *
GetMovingImageMask() const override
{
return this->GetMovingImageMask(0);
}
/** Get the number of pixels considered in the computation. Return the sum
* of pixels counted by all metrics.
*/
const SizeValueType &
GetNumberOfPixelsCounted() const override;
/** Pass initialization to all sub metrics. */
void
Initialize() override;
/**
* Combine all sub metrics by adding them.
*/
/** The GetValue()-method. */
MeasureType
GetValue(const ParametersType & parameters) const override;
/** The GetDerivative()-method. */
void
GetDerivative(const ParametersType & parameters, DerivativeType & derivative) const override;
/** The GetValueAndDerivative()-method. */
void
GetValueAndDerivative(const ParametersType & parameters,
MeasureType & value,
DerivativeType & derivative) const override;
/** Method to return the latest modified time of this object or any of its
* cached ivars.
*/
ModifiedTimeType
GetMTime() const override;
protected:
CombinationImageToImageMetric();
~CombinationImageToImageMetric() override = default;
void
PrintSelf(std::ostream & os, Indent indent) const override;
/** Store the metrics and the corresponding weights. */
unsigned int m_NumberOfMetrics{ 0 };
std::vector<SingleValuedCostFunctionPointer> m_Metrics{};
std::vector<double> m_MetricWeights{};
std::vector<double> m_MetricRelativeWeights{};
bool m_UseRelativeWeights{ false };
std::vector<bool> m_UseMetric{};
mutable std::vector<MeasureType> m_MetricValues{};
mutable std::vector<DerivativeType> m_MetricDerivatives{};
mutable std::vector<double> m_MetricDerivativesMagnitude{};
mutable std::vector<double> m_MetricComputationTime{};
/** Dummy image region and derivatives. */
FixedImageRegionType m_NullFixedImageRegion{};
DerivativeType m_NullDerivative{};
private:
// Private using-declarations, to avoid `-Woverloaded-virtual` warnings from GCC (GCC 11.4) or clang (macos-12).
using Superclass::SetFixedImageMask;
using Superclass::SetMovingImageMask;
using Superclass::SetTransform;
/** Initialize some multi-threading related parameters.
* Overrides function in AdvancedImageToImageMetric, because
* here we use other parameters.
*/
void
InitializeThreadingParameters() const override;
/** Compute the current metric weight, given the user selected
* strategy and derivative magnitude.
*/
double
GetFinalMetricWeight(unsigned int pos) const;
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkCombinationImageToImageMetric.hxx"
#endif
#endif // end #ifndef itkCombinationImageToImageMetric_h
|