ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkPointSetToPointSetMetricWithIndexv4.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkPointSetToPointSetMetricWithIndexv4_h
19#define itkPointSetToPointSetMetricWithIndexv4_h
20
22
23#include "itkFixedArray.h"
24#include "itkPointsLocator.h"
25#include "itkPointSet.h"
26
27namespace itk
28{
68
69template <typename TFixedPointSet,
70 typename TMovingPointSet = TFixedPointSet,
71 class TInternalComputationValueType = double>
72class ITK_TEMPLATE_EXPORT PointSetToPointSetMetricWithIndexv4
73 : public ObjectToObjectMetric<TFixedPointSet::PointDimension,
74 TMovingPointSet::PointDimension,
75 Image<TInternalComputationValueType, TFixedPointSet::PointDimension>,
76 TInternalComputationValueType>
77{
78public:
79 ITK_DISALLOW_COPY_AND_MOVE(PointSetToPointSetMetricWithIndexv4);
80
83 using Superclass = ObjectToObjectMetric<TFixedPointSet::PointDimension,
84 TMovingPointSet::PointDimension,
86 TInternalComputationValueType>;
89
91 itkOverrideGetNameOfClassMacro(PointSetToPointSetMetricWithIndexv4);
92
94 using typename Superclass::MeasureType;
95
97 using typename Superclass::ParametersType;
100
102 using typename Superclass::DerivativeType;
103
105 using typename Superclass::FixedTransformType;
107 using typename Superclass::FixedInputPointType;
110
111 using typename Superclass::MovingTransformType;
116
117 using typename Superclass::JacobianType;
120
122
124
126 using typename Superclass::DimensionType;
127
129 using FixedPointSetType = TFixedPointSet;
130 using FixedPointType = typename TFixedPointSet::PointType;
131 using FixedPixelType = typename TFixedPointSet::PixelType;
132 using FixedPointsContainer = typename TFixedPointSet::PointsContainer;
133
135
137 using MovingPointSetType = TMovingPointSet;
138 using MovingPointType = typename TMovingPointSet::PointType;
139 using MovingPixelType = typename TMovingPointSet::PixelType;
140 using MovingPointsContainer = typename TMovingPointSet::PointsContainer;
143
151
154 using CoordinateType = typename PointType::CoordinateType;
155#ifndef ITK_FUTURE_LEGACY_REMOVE
156 using CoordRepType ITK_FUTURE_DEPRECATED(
157 "ITK 6 discourages using `CoordRepType`. Please use `CoordinateType` instead!") = CoordinateType;
158#endif
160 using PointsConstIterator = typename PointsContainer::ConstIterator;
161 using PointIdentifier = typename PointsContainer::ElementIdentifier;
162
166
169
172
175 using typename Superclass::VirtualImagePointer;
176 using typename Superclass::VirtualPixelType;
177 using typename Superclass::VirtualRegionType;
178 using typename Superclass::VirtualSizeType;
179 using typename Superclass::VirtualSpacingType;
181 using typename Superclass::VirtualPointType;
184 using typename Superclass::VirtualIndexType;
185 using typename Superclass::VirtualPointSetType;
187
189 void
190 SetFixedObject(const ObjectType * object) override
191 {
192 auto * pointSet = dynamic_cast<FixedPointSetType *>(const_cast<ObjectType *>(object));
193 if (pointSet != nullptr)
194 {
195 this->SetFixedPointSet(pointSet);
196 }
197 else
198 {
199 itkExceptionMacro("Incorrect object type. Should be a point set.");
200 }
201 }
202
204 void
205 SetMovingObject(const ObjectType * object) override
206 {
207 auto * pointSet = dynamic_cast<MovingPointSetType *>(const_cast<ObjectType *>(object));
208 if (pointSet != nullptr)
209 {
210 this->SetMovingPointSet(pointSet);
211 }
212 else
213 {
214 itkExceptionMacro("Incorrect object type. Should be a point set.");
215 }
216 }
217
220 itkSetConstObjectMacro(FixedPointSet, FixedPointSetType);
221 itkGetConstObjectMacro(FixedPointSet, FixedPointSetType);
223
225 itkGetModifiableObjectMacro(FixedTransformedPointSet, FixedTransformedPointSetType);
226
229 itkSetConstObjectMacro(MovingPointSet, MovingPointSetType);
230 itkGetConstObjectMacro(MovingPointSet, MovingPointSetType);
232
234 itkGetModifiableObjectMacro(MovingTransformedPointSet, MovingTransformedPointSetType);
235
241
253 GetValue() const override;
254
265 void
266 GetDerivative(DerivativeType &) const override;
267
278 void
280
285 const VirtualPointSetType *
287
292 void
293 Initialize() override;
294
295 bool
297 {
298 /* An arbitrary point in the virtual domain will not always
299 * correspond to a point within either point set. */
300 return false;
301 }
302
315 itkSetMacro(StoreDerivativeAsSparseFieldForLocalSupportTransforms, bool);
316 itkGetConstMacro(StoreDerivativeAsSparseFieldForLocalSupportTransforms, bool);
317 itkBooleanMacro(StoreDerivativeAsSparseFieldForLocalSupportTransforms);
319
324 itkSetMacro(CalculateValueAndDerivativeInTangentSpace, bool);
325 itkGetConstMacro(CalculateValueAndDerivativeInTangentSpace, bool);
326 itkBooleanMacro(CalculateValueAndDerivativeInTangentSpace);
328
329protected:
332 void
333 PrintSelf(std::ostream & os, Indent indent) const override;
334
335 typename FixedPointSetType::ConstPointer m_FixedPointSet{};
337
339
340 typename MovingPointSetType::ConstPointer m_MovingPointSet{};
342
344
347
353
362
365 virtual void
367
372 virtual void
374
380 virtual SizeValueType
382
385 void
386 CalculateValueAndDerivative(MeasureType & calculatedValue, DerivativeType & derivative, bool calculateValue) const;
387
394 void
396
403 void
405
410 void
412
417 void
419
420 using typename Superclass::MetricCategoryType;
421
424 GetMetricCategory() const override
425 {
426 return MetricCategoryType::POINT_SET_METRIC;
427 }
428
429 virtual bool
431 {
432 return true;
433 }
434
435 virtual bool
437 {
438 return true;
439 }
440
446 virtual MeasureType
447 GetLocalNeighborhoodValueWithIndex(const PointIdentifier &, const PointType &, const PixelType & pixel) const = 0;
448
455 virtual LocalDerivativeType
457
463 virtual void
465 const PointType &,
466 MeasureType &,
468 const PixelType & pixel) const = 0;
469
470private:
473
474 // Flag to keep track of whether a warning has already been issued
475 // regarding the number of valid points.
477
478 // Flag to store derivatives at fixed point locations with the rest being zero gradient
479 // (default = true).
481
484
485 // Create ranges over the point set for multithreaded computation of value and derivatives
486 using PointIdentifierPair = std::pair<PointIdentifier, PointIdentifier>;
487 using PointIdentifierRanges = std::vector<PointIdentifierPair>;
490};
491} // end namespace itk
492
493#ifndef ITK_MANUAL_INSTANTIATION
494# include "itkPointSetToPointSetMetricWithIndexv4.hxx"
495#endif
496
497#endif
TInternalComputationValueType ValueType
Definition itkArray.h:51
OptimizerParameters< TInternalComputationValueType > ParametersType
TInternalComputationValueType ParametersValueType
Simulate a standard C array with copy semantics.
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
Transform< TInternalComputationValueType, Image< TInternalComputationValueType, TFixedPointSet::PointDimension >::ImageDimension, TMovingDimension > MovingTransformType
Transform< TInternalComputationValueType, Image< TInternalComputationValueType, TFixedPointSet::PointDimension >::ImageDimension, TFixedDimension > FixedTransformType
const PointIdentifierRanges CreateRanges() const
virtual void InitializeForIteration() const
virtual SizeValueType CalculateNumberOfValidFixedPoints() const
void GetDerivative(DerivativeType &) const override
~PointSetToPointSetMetricWithIndexv4() override=default
const VirtualPointSetType * GetVirtualTransformedPointSet() const
virtual void GetLocalNeighborhoodValueAndDerivativeWithIndex(const PointIdentifier &, const PointType &, MeasureType &, LocalDerivativeType &, const PixelType &pixel) const =0
void CalculateValueAndDerivative(MeasureType &calculatedValue, DerivativeType &derivative, bool calculateValue) const
virtual LocalDerivativeType GetLocalNeighborhoodDerivativeWithIndex(const PointIdentifier &, const PointType &, const PixelType &pixel) const
MeasureType GetValue() const override
SizeValueType GetNumberOfComponents() const
void StorePointDerivative(const VirtualPointType &, const DerivativeType &, DerivativeType &) const
void GetValueAndDerivative(MeasureType &, DerivativeType &) const override
virtual MeasureType GetLocalNeighborhoodValueWithIndex(const PointIdentifier &, const PointType &, const PixelType &pixel) const =0
void PrintSelf(std::ostream &os, Indent indent) const override
ObjectToObjectMetric< TFixedPointSet::PointDimension, TMovingPointSet::PointDimension, Image< TInternalComputationValueType, TFixedPointSet::PointDimension >, TInternalComputationValueType > Superclass
A superclass of the N-dimensional mesh structure; supports point (geometric coordinate and attribute)...
Definition itkPointSet.h:82
Accelerate geometric searches for points.
typename TreeType::InstanceIdentifierVectorType NeighborsIdentifierType
Array< TInternalComputationValueType > DerivativeType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86
SizeValueType ModifiedTimeType