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
|
/*=========================================================================
*
* 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: itkAdvancedTranslationTransform.h,v $
Date: $Date: 2007-07-15 16:38:25 $
Version: $Revision: 1.36 $
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 itkAdvancedTranslationTransform_h
#define itkAdvancedTranslationTransform_h
#include <iostream>
#include "itkAdvancedTransform.h"
#include "itkMacro.h"
#include "itkMatrix.h"
namespace itk
{
/** \brief Translation transformation of a vector space (e.g. space coordinates)
*
* The same functionality could be obtained by using the Affine transform,
* but with a large difference in performance.
*
* \ingroup Transforms
*/
template <class TScalarType = double, // Data type for scalars (float or double)
unsigned int NDimensions = 3>
// Number of dimensions
class ITK_TEMPLATE_EXPORT AdvancedTranslationTransform : public AdvancedTransform<TScalarType, NDimensions, NDimensions>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(AdvancedTranslationTransform);
/** Standard class typedefs. */
using Self = AdvancedTranslationTransform;
using Superclass = AdvancedTransform<TScalarType, NDimensions, NDimensions>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** New macro for creation of through the object factory.*/
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(AdvancedTranslationTransform, AdvancedTransform);
/** Dimension of the domain space. */
itkStaticConstMacro(SpaceDimension, unsigned int, NDimensions);
itkStaticConstMacro(ParametersDimension, unsigned int, NDimensions);
/** Standard scalar type for this class. */
using typename Superclass::ScalarType;
/** Standard parameters container. */
using typename Superclass::ParametersType;
using typename Superclass::FixedParametersType;
using typename Superclass::NumberOfParametersType;
using typename Superclass::TransformCategoryEnum;
/** Standard Jacobian container. */
using typename Superclass::JacobianType;
/** Standard vector type for this class. */
using InputVectorType = Vector<TScalarType, Self::SpaceDimension>;
using OutputVectorType = Vector<TScalarType, Self::SpaceDimension>;
/** Standard covariant vector type for this class. */
using InputCovariantVectorType = CovariantVector<TScalarType, Self::SpaceDimension>;
using OutputCovariantVectorType = CovariantVector<TScalarType, Self::SpaceDimension>;
/** Standard vnl_vector type for this class. */
using InputVnlVectorType = vnl_vector_fixed<TScalarType, Self::SpaceDimension>;
using OutputVnlVectorType = vnl_vector_fixed<TScalarType, Self::SpaceDimension>;
/** Standard coordinate point type for this class. */
using InputPointType = Point<TScalarType, Self::SpaceDimension>;
using OutputPointType = Point<TScalarType, Self::SpaceDimension>;
/** 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;
/** This method returns the value of the offset of the
* AdvancedTranslationTransform.
*/
const OutputVectorType &
GetOffset() const
{
return m_Offset;
}
/** This method sets the parameters for the transform
* value specified by the user. */
void
SetParameters(const ParametersType & parameters) override;
/** Get the Transformation Parameters. */
const ParametersType &
GetParameters() const override;
/** Set offset of an Translation Transform.
* This method sets the offset of an AdvancedTranslationTransform to a
* value specified by the user. */
void
SetOffset(const OutputVectorType & offset)
{
m_Offset = offset;
return;
}
/** Transform by an affine transformation.
* This method applies the affine transform given by self to a
* given point or vector, returning the transformed point or
* vector. */
OutputPointType
TransformPoint(const InputPointType & point) const override;
OutputVectorType
TransformVector(const InputVectorType & vector) const override;
OutputVnlVectorType
TransformVector(const InputVnlVectorType & vector) const override;
OutputCovariantVectorType
TransformCovariantVector(const InputCovariantVectorType & vector) const override;
/** Compute the Jacobian of the transformation. */
void
GetJacobian(const InputPointType &, JacobianType &, NonZeroJacobianIndicesType &) const override;
/** Compute the spatial Jacobian of the transformation. */
void
GetSpatialJacobian(const InputPointType &, SpatialJacobianType &) const override;
/** Compute the spatial Hessian of the transformation. */
void
GetSpatialHessian(const InputPointType &, SpatialHessianType &) const override;
/** Compute the Jacobian of the spatial Jacobian of the transformation. */
void
GetJacobianOfSpatialJacobian(const InputPointType &,
JacobianOfSpatialJacobianType &,
NonZeroJacobianIndicesType &) const override;
/** Compute the Jacobian of the spatial Jacobian of the transformation. */
void
GetJacobianOfSpatialJacobian(const InputPointType &,
SpatialJacobianType &,
JacobianOfSpatialJacobianType &,
NonZeroJacobianIndicesType &) const override;
/** Compute the Jacobian of the spatial Hessian of the transformation. */
void
GetJacobianOfSpatialHessian(const InputPointType &,
JacobianOfSpatialHessianType &,
NonZeroJacobianIndicesType &) const override;
/** Compute both the spatial Hessian and the Jacobian of the
* spatial Hessian of the transformation.
*/
void
GetJacobianOfSpatialHessian(const InputPointType & inputPoint,
SpatialHessianType & sh,
JacobianOfSpatialHessianType & jsh,
NonZeroJacobianIndicesType & nonZeroJacobianIndices) const override;
/** Set the parameters to the IdentityTransform */
void
SetIdentity();
/** Return the number of parameters that completely define the Transform */
NumberOfParametersType
GetNumberOfParameters() const override
{
return NDimensions;
}
/** Indicates that this transform is linear. That is, given two
* points P and Q, and scalar coefficients a and b, then
*
* T( a*P + b*Q ) = a * T(P) + b * T(Q)
*/
bool
IsLinear() const override
{
return true;
}
/** Indicates the category transform.
* e.g. an affine transform, or a local one, e.g. a deformation field.
*/
TransformCategoryEnum
GetTransformCategory() const override
{
return TransformCategoryEnum::Linear;
}
/** Set the fixed parameters and update internal transformation.
* The Translation Transform does not require fixed parameters,
* therefore the implementation of this method is a null operation. */
void
SetFixedParameters(const FixedParametersType &) override
{ /* purposely blank */
}
/** Get the Fixed Parameters. The AdvancedTranslationTransform does not
* require Fixed parameters, therefore this method returns an
* parameters array of size zero. */
const FixedParametersType &
GetFixedParameters() const override
{
this->m_FixedParameters.SetSize(0);
return this->m_FixedParameters;
}
protected:
AdvancedTranslationTransform();
~AdvancedTranslationTransform() override;
/** Print contents of an AdvancedTranslationTransform. */
void
PrintSelf(std::ostream & os, Indent indent) const override;
private:
// Private using-declarations, to avoid `-Woverloaded-virtual` warnings from GCC (GCC 11.4).
using Superclass::TransformCovariantVector;
using Superclass::TransformVector;
OutputVectorType m_Offset{}; // Offset of the transformation
// The Jacobian of this transform is constant. Therefore it can be shared among all the threads.
const JacobianType m_LocalJacobian{
Matrix<TScalarType, NDimensions, NDimensions>::GetIdentity().GetVnlMatrix().as_matrix()
};
const SpatialJacobianType m_SpatialJacobian{ SpatialJacobianType::GetIdentity() };
const SpatialHessianType m_SpatialHessian{};
NonZeroJacobianIndicesType m_NonZeroJacobianIndices{ NonZeroJacobianIndicesType(NDimensions) };
const JacobianOfSpatialJacobianType m_JacobianOfSpatialJacobian{ JacobianOfSpatialJacobianType(NDimensions) };
const JacobianOfSpatialHessianType m_JacobianOfSpatialHessian{ JacobianOfSpatialHessianType(NDimensions) };
};
// class AdvancedTranslationTransform
} // namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkAdvancedTranslationTransform.hxx"
#endif
#endif /* itkAdvancedTranslationTransform_h */
|