ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkRegistrationParameterScalesFromIndexShift.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 itkRegistrationParameterScalesFromIndexShift_h
19#define itkRegistrationParameterScalesFromIndexShift_h
20
22
23namespace itk
24{
25
34template <typename TMetric>
37{
38public:
39 ITK_DISALLOW_COPY_AND_MOVE(RegistrationParameterScalesFromIndexShift);
40
46
48 itkNewMacro(Self);
49
51 itkOverrideGetNameOfClassMacro(RegistrationParameterScalesFromIndexShift);
52
54 using typename Superclass::ScalesType;
56 using typename Superclass::ParametersType;
58 using typename Superclass::FloatType;
59
60 using typename Superclass::VirtualPointType;
61 using typename Superclass::VirtualIndexType;
63 using typename Superclass::FixedTransformType;
64 using typename Superclass::JacobianType;
66
67 using FixedImageType = typename TMetric::FixedImageType;
68 using MovingImageType = typename TMetric::MovingImageType;
69
70 using FixedImageConstPointer = typename FixedImageType::ConstPointer;
71 using MovingImageConstPointer = typename MovingImageType::ConstPointer;
72
73 using FixedPointType = typename FixedImageType::PointType;
74 using FixedIndexType = typename FixedImageType::IndexType;
75 using FixedPointValueType = typename FixedImageType::PointValueType;
76
78
79 using MovingPointType = typename MovingImageType::PointType;
80 using MovingIndexType = typename MovingImageType::IndexType;
81 using MovingPointValueType = typename MovingImageType::PointValueType;
82
85
86protected:
89
90 void
91 PrintSelf(std::ostream & os, Indent indent) const override;
92
93 void
94 ComputeSampleShifts(const ParametersType & deltaParameters, ScalesType & sampleShifts) override;
95
96 template <typename TContinuousIndexType>
97 void
98 TransformPointToContinuousIndex(const VirtualPointType & point, TContinuousIndexType & mappedIndex);
99
100private:
101 template <typename TTransform>
102 void
103 ComputeSampleShiftsInternal(const ParametersType & deltaParameters, ScalesType & sampleShifts);
104
105}; // class RegistrationParameterScalesFromIndexShift
106
107} // namespace itk
108
109
110#ifndef ITK_MANUAL_INSTANTIATION
111# include "itkRegistrationParameterScalesFromIndexShift.hxx"
112#endif
113
114#endif /* itkRegistrationParameterScalesFromIndexShift_h */
A templated class holding a point in n-Dimensional image space.
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename itk::ContinuousIndex< MovingPointValueType, MovingImageType::ImageDimension > MovingContinuousIndexType
void PrintSelf(std::ostream &os, Indent indent) const override
~RegistrationParameterScalesFromIndexShift() override=default
typename itk::ContinuousIndex< FixedPointValueType, FixedImageType::ImageDimension > FixedContinuousIndexType
RegistrationParameterScalesFromShiftBase< TMetric > Superclass
void TransformPointToContinuousIndex(const VirtualPointType &point, TContinuousIndexType &mappedIndex)
void ComputeSampleShiftsInternal(const ParametersType &deltaParameters, ScalesType &sampleShifts)
void ComputeSampleShifts(const ParametersType &deltaParameters, ScalesType &sampleShifts) override
typename TMetric::VirtualImageConstPointer VirtualImageConstPointer
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....