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
|
/*=========================================================================
*
* 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 itkBSplineInterpolationWeightFunctionBase_h
#define itkBSplineInterpolationWeightFunctionBase_h
#include "itkFunctionBase.h"
#include "itkContinuousIndex.h"
#include "itkArray.h"
#include "itkArray2D.h"
#include "itkMath.h"
#include "itkMatrix.h"
#include "itkBSplineKernelFunction2.h"
#include "itkBSplineDerivativeKernelFunction.h"
#include "itkBSplineSecondOrderDerivativeKernelFunction2.h"
namespace itk
{
/** \class BSplineInterpolationWeightFunctionBase
* \brief Returns the weights over the support region used for B-spline
* interpolation/reconstruction.
*
* Computes/evaluate the B-spline interpolation weights over the
* support region of the B-spline.
*
* This class is templated over the coordinate representation type,
* the space dimension and the spline order.
*
* \sa Point
* \sa Index
* \sa ContinuousIndex
*
* \ingroup Functions ImageInterpolators
*/
template <class TCoordRep = float, unsigned int VSpaceDimension = 2, unsigned int VSplineOrder = 3>
class ITK_TEMPLATE_EXPORT BSplineInterpolationWeightFunctionBase
: public FunctionBase<ContinuousIndex<TCoordRep, VSpaceDimension>,
FixedArray<double, Math::UnsignedPower(VSplineOrder + 1, VSpaceDimension)>>
{
public:
ITK_DISALLOW_COPY_AND_MOVE(BSplineInterpolationWeightFunctionBase);
/** Standard class typedefs. */
using Self = BSplineInterpolationWeightFunctionBase;
using Superclass = FunctionBase<ContinuousIndex<TCoordRep, VSpaceDimension>,
FixedArray<double, Math::UnsignedPower(VSplineOrder + 1, VSpaceDimension)>>;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
/** Run-time type information (and related methods). */
itkTypeMacro(BSplineInterpolationWeightFunctionBase, FunctionBase);
/** Space dimension. */
itkStaticConstMacro(SpaceDimension, unsigned int, VSpaceDimension);
/** Spline order. */
itkStaticConstMacro(SplineOrder, unsigned int, VSplineOrder);
/** The number of weights as a static const. */
static constexpr unsigned long NumberOfWeights = Math::UnsignedPower(VSplineOrder + 1, VSpaceDimension);
/** OutputType typedef support. */
using WeightsType = FixedArray<double, NumberOfWeights>;
/** Index and size typedef support. */
using IndexType = Index<VSpaceDimension>;
using SizeType = Size<VSpaceDimension>;
/** ContinuousIndex typedef support. */
using ContinuousIndexType = ContinuousIndex<TCoordRep, VSpaceDimension>;
/** Evaluate the weights at specified ContinousIndex position. */
WeightsType
Evaluate(const ContinuousIndexType & index) const override;
/** Evaluate the weights at specified ContinousIndex position.
* The weights are returned in the user specified container.
* This function assume that the weights has a correct size. For efficiency,
* no size checking is done.
* On return, startIndex contains the start index of the
* support region over which the weights are defined.
*/
virtual void
Evaluate(const ContinuousIndexType & cindex, const IndexType & startIndex, WeightsType & weights) const;
/** Compute the start index of the support region. */
void
ComputeStartIndex(const ContinuousIndexType & index, IndexType & startIndex) const;
/** The support region size: a hypercube of length SplineOrder + 1 */
static constexpr SizeType SupportSize{ SizeType::Filled(VSplineOrder + 1) };
protected:
BSplineInterpolationWeightFunctionBase();
~BSplineInterpolationWeightFunctionBase() override = default;
/** Interpolation kernel types. */
using KernelType = BSplineKernelFunction2<VSplineOrder>;
using KernelPointer = typename KernelType::Pointer;
using DerivativeKernelType = BSplineDerivativeKernelFunction<VSplineOrder>;
using DerivativeKernelPointer = typename DerivativeKernelType::Pointer;
using SecondOrderDerivativeKernelType = BSplineSecondOrderDerivativeKernelFunction2<VSplineOrder>;
using SecondOrderDerivativeKernelPointer = typename SecondOrderDerivativeKernelType::Pointer;
using WeightArrayType = typename KernelType::WeightArrayType;
/** Typedef for intermediary 1D weights.
* The Matrix is at least twice as fast as std::vector< vnl_vector< double > >,
* probably because of the fixed size at compile time.
*/
using OneDWeightsType = Matrix<double, Self::SpaceDimension, VSplineOrder + 1>;
/** Compute the 1D weights. */
virtual void
Compute1DWeights(const ContinuousIndexType & index,
const IndexType & startIndex,
OneDWeightsType & weights1D) const = 0;
/** Print the member variables. */
void
PrintSelf(std::ostream & os, Indent indent) const override;
/** Member variables. */
vnl_matrix<unsigned long> m_OffsetToIndexTable{};
private:
/** Function to initialize the offset table.
* The offset table is a convenience table, just to
* keep track where is what.
*/
void
InitializeOffsetToIndexTable();
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
# include "itkBSplineInterpolationWeightFunctionBase.hxx"
#endif
#endif
|