/usr/include/ITK-4.9/itkTimeVaryingBSplineVelocityFieldTransform.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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 itkTimeVaryingBSplineVelocityFieldTransform_h
#define itkTimeVaryingBSplineVelocityFieldTransform_h
#include "itkVelocityFieldTransform.h"
namespace itk
{
/**
* \class TimeVaryingBSplineVelocityFieldTransform
* \brief Integrate a time-varying velocity field represented by a B-spline control
* point lattice.
*
* Diffeomorphisms are topology-preserving mappings that are useful for
* describing biologically plausible deformations. Mathematically, a
* diffeomorphism, \f$ \phi \f$, is generated from a time-varying velocity field, v, as
* described by the integral equation:
*
* \f[
* \phi(t_b) = \phi(t_a) + \int_{t_a}^{t_b} v(\phi(t),t) dt
* \f]
*
* In typical registration
* applications it is computationally more efficient to sample the B-spline transform
* to its corresponding displacement field. Therefore, the user needs to specify the
* domain parameters of that displacement field using the following functions:
*
* \li \c SetDisplacementFieldSpacing()
* \li \c SetDisplacementFieldOrigin()
* \li \c SetDisplacementFieldSize()
* \li \c SetDisplacementFieldDirection()
*
* It's important that these parameters match up with the fixed parameters of this
* transform which are defined as the parameters of the (N+1)-D B-spline grid
* representing the continuous velocity field. This control point lattice is set
* using \c SetTimeVaryingVelocityFieldControlPointLattice() or it can be created
* by setting the fixed parameters.
*
* Note: For readability of the code, it is important to note that we store the
* control point lattice in the m_VelocityField variable since they are of the same
* type. It's only when we call IntegrateVelocityField() that a sampled velocity
* field is created from the control point lattice.
*
* \author Nick Tustison
* \author Brian Avants
*
* \ingroup Transforms
* \ingroup ITKDisplacementField
*/
template<typename TParametersValueType, unsigned int NDimensions>
class TimeVaryingBSplineVelocityFieldTransform :
public VelocityFieldTransform<TParametersValueType, NDimensions>
{
public:
/** Standard class typedefs. */
typedef TimeVaryingBSplineVelocityFieldTransform Self;
typedef VelocityFieldTransform<TParametersValueType, NDimensions> Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Run-time type information (and related methods). */
itkTypeMacro( TimeVaryingBSplineVelocityFieldTransform, VelocityFieldTransform );
/** New macro for creation of through a Smart Pointer */
itkNewMacro( Self );
/** InverseTransform type. */
typedef typename Superclass::InverseTransformBasePointer InverseTransformBasePointer;
/** Interpolator types.*/
typedef typename Superclass::InterpolatorType InterpolatorType;
typedef typename Superclass::VelocityFieldInterpolatorType VelocityFieldIntegratorType;
/** Field types. */
typedef typename Superclass::DisplacementFieldType DisplacementFieldType;
typedef typename Superclass::VelocityFieldType VelocityFieldType;
/** Scalar type. */
typedef typename Superclass::ScalarType ScalarType;
/** Type of the input parameters. */
typedef typename Superclass::ParametersType ParametersType;
typedef typename ParametersType::ValueType ParametersValueType;
typedef typename Superclass::FixedParametersType FixedParametersType;
typedef typename FixedParametersType::ValueType FixedParametersValueType;
typedef typename Superclass::NumberOfParametersType NumberOfParametersType;
/** Derivative type */
typedef typename Superclass::DerivativeType DerivativeType;
/** Dimension of the domain spaces. */
itkStaticConstMacro( Dimension, unsigned int, NDimensions );
/** Dimension of the time varying velocity field. */
itkStaticConstMacro( VelocityFieldDimension, unsigned int, NDimensions + 1 );
typedef typename VelocityFieldType::PointType VelocityFieldPointType;
typedef typename VelocityFieldType::SizeType VelocityFieldSizeType;
typedef typename VelocityFieldType::SpacingType VelocityFieldSpacingType;
typedef typename VelocityFieldType::DirectionType VelocityFieldDirectionType;
typedef VelocityFieldType TimeVaryingVelocityFieldControlPointLatticeType;
typedef typename VelocityFieldType::Pointer TimeVaryingVelocityFieldControlPointLatticePointer;
typedef typename DisplacementFieldType::PixelType DisplacementVectorType;
typedef typename DisplacementFieldType::SizeType DisplacementFieldSizeType;
typedef typename DisplacementFieldType::SpacingType DisplacementFieldSpacingType;
typedef typename DisplacementFieldType::PointType DisplacementFieldPointType;
typedef typename DisplacementFieldType::DirectionType DisplacementFieldDirectionType;
/** Get the time-varying velocity field control point lattice. */
VelocityFieldType * GetTimeVaryingVelocityFieldControlPointLattice()
{
return this->GetModifiableVelocityField();
}
/** Set the time-varying velocity field control point lattice. */
virtual void SetTimeVaryingVelocityFieldControlPointLattice( VelocityFieldType * fieldLattice )
{
this->SetVelocityField( fieldLattice );
}
/** Update the transform's parameters by the adding values in \c update
* to current parameter values. We assume \c update is of the same length as Parameters.
* Throw exception otherwise. \c factor is a scalar multiplier for each value in update.
* SetParameters is called at the end of this method, to allow transforms
* to perform any required operations on the update parameters, typically
* a converion to member variables for use in TransformPoint.
*/
virtual void UpdateTransformParameters( const DerivativeType & update, ScalarType factor = 1.0 ) ITK_OVERRIDE;
/** Trigger the computation of the displacement field by integrating the time-varying velocity field. */
virtual void IntegrateVelocityField() ITK_OVERRIDE;
/** Set/Get sampled velocity field origin */
itkSetMacro( VelocityFieldOrigin, VelocityFieldPointType );
itkGetConstMacro( VelocityFieldOrigin, VelocityFieldPointType );
/** Set/Get sampled velocity field spacing */
itkSetMacro( VelocityFieldSpacing, VelocityFieldSpacingType );
itkGetConstMacro( VelocityFieldSpacing, VelocityFieldSpacingType );
/** Set/Get sampled velocity field size */
itkSetMacro( VelocityFieldSize, VelocityFieldSizeType );
itkGetConstMacro( VelocityFieldSize, VelocityFieldSizeType );
/** Set/Get sampled velocity field direction */
itkSetMacro( VelocityFieldDirection, VelocityFieldDirectionType );
itkGetConstMacro( VelocityFieldDirection, VelocityFieldDirectionType );
/** Set/Get the spline order. */
itkSetMacro( SplineOrder, unsigned int );
itkGetConstMacro( SplineOrder, unsigned int );
protected:
TimeVaryingBSplineVelocityFieldTransform();
virtual ~TimeVaryingBSplineVelocityFieldTransform();
void PrintSelf( std::ostream& os, Indent indent ) const ITK_OVERRIDE;
private:
TimeVaryingBSplineVelocityFieldTransform( const Self& ) ITK_DELETE_FUNCTION;
void operator=( const Self& ) ITK_DELETE_FUNCTION;
unsigned int m_SplineOrder;
bool m_TemporalPeriodicity;
VelocityFieldPointType m_VelocityFieldOrigin;
VelocityFieldSpacingType m_VelocityFieldSpacing;
VelocityFieldDirectionType m_VelocityFieldDirection;
VelocityFieldSizeType m_VelocityFieldSize;
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkTimeVaryingBSplineVelocityFieldTransform.hxx"
#endif
#endif // itkTimeVaryingBSplineVelocityFieldTransform_h
|