00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __itkBSplineInterpolateImageFunction_h
00021 #define __itkBSplineInterpolateImageFunction_h
00022
00023
00024
00025
00026 #include "itkConfigure.h"
00027
00028 #ifdef ITK_USE_OPTIMIZED_REGISTRATION_METHODS
00029 #include "itkOptBSplineInterpolateImageFunction.h"
00030 #else
00031
00032 #include <vector>
00033
00034 #include "itkImageLinearIteratorWithIndex.h"
00035 #include "itkInterpolateImageFunction.h"
00036 #include "vnl/vnl_matrix.h"
00037
00038 #include "itkBSplineDecompositionImageFilter.h"
00039 #include "itkConceptChecking.h"
00040 #include "itkCovariantVector.h"
00041
00042 namespace itk
00043 {
00077 template <
00078 class TImageType,
00079 class TCoordRep = double,
00080 class TCoefficientType = double >
00081 class ITK_EXPORT BSplineInterpolateImageFunction :
00082 public InterpolateImageFunction<TImageType,TCoordRep>
00083 {
00084 public:
00086 typedef BSplineInterpolateImageFunction Self;
00087 typedef InterpolateImageFunction<TImageType,TCoordRep> Superclass;
00088 typedef SmartPointer<Self> Pointer;
00089 typedef SmartPointer<const Self> ConstPointer;
00090
00092 itkTypeMacro(BSplineInterpolateImageFunction, InterpolateImageFunction);
00093
00094
00096 itkNewMacro( Self );
00097
00099 typedef typename Superclass::OutputType OutputType;
00100
00102 typedef typename Superclass::InputImageType InputImageType;
00103
00105 itkStaticConstMacro(ImageDimension, unsigned int,Superclass::ImageDimension);
00106
00108 typedef typename Superclass::IndexType IndexType;
00109
00111 typedef typename Superclass::ContinuousIndexType ContinuousIndexType;
00112
00114 typedef typename Superclass::PointType PointType;
00115
00117 typedef ImageLinearIteratorWithIndex<TImageType> Iterator;
00118
00120 typedef TCoefficientType CoefficientDataType;
00121 typedef Image<CoefficientDataType,
00122 itkGetStaticConstMacro(ImageDimension)
00123 > CoefficientImageType;
00124
00126 typedef BSplineDecompositionImageFilter<TImageType, CoefficientImageType>
00127 CoefficientFilter;
00128 typedef typename CoefficientFilter::Pointer CoefficientFilterPointer;
00129
00138 virtual OutputType EvaluateAtContinuousIndex(
00139 const ContinuousIndexType & index ) const;
00140
00142 typedef CovariantVector<OutputType,
00143 itkGetStaticConstMacro(ImageDimension)
00144 > CovariantVectorType;
00145
00146 CovariantVectorType EvaluateDerivative( const PointType & point ) const
00147 {
00148 ContinuousIndexType index;
00149 this->GetInputImage()->TransformPhysicalPointToContinuousIndex( point, index );
00150 return ( this->EvaluateDerivativeAtContinuousIndex( index ) );
00151 }
00152
00153 CovariantVectorType EvaluateDerivativeAtContinuousIndex(
00154 const ContinuousIndexType & x ) const;
00155
00156
00159 void SetSplineOrder(unsigned int SplineOrder);
00160 itkGetMacro(SplineOrder, int);
00162
00163
00165 virtual void SetInputImage(const TImageType * inputData);
00166
00167
00176 itkSetMacro( UseImageDirection, bool );
00177 itkGetMacro( UseImageDirection, bool );
00178 itkBooleanMacro( UseImageDirection );
00180
00181
00182 protected:
00183 BSplineInterpolateImageFunction();
00184 virtual ~BSplineInterpolateImageFunction() {};
00185 void operator=( const Self& );
00186 void PrintSelf(std::ostream& os, Indent indent) const;
00187
00188
00189 std::vector<CoefficientDataType> m_Scratch;
00190 typename TImageType::SizeType m_DataLength;
00191 unsigned int m_SplineOrder;
00192
00193 typename CoefficientImageType::ConstPointer m_Coefficients;
00194
00195 private:
00196 BSplineInterpolateImageFunction( const Self& );
00198 void SetInterpolationWeights( const ContinuousIndexType & x,
00199 const vnl_matrix<long> & EvaluateIndex,
00200 vnl_matrix<double> & weights,
00201 unsigned int splineOrder ) const;
00202
00204 void SetDerivativeWeights( const ContinuousIndexType & x,
00205 const vnl_matrix<long> & EvaluateIndex,
00206 vnl_matrix<double> & weights,
00207 unsigned int splineOrder ) const;
00208
00211 void GeneratePointsToIndex( );
00212
00214 void DetermineRegionOfSupport( vnl_matrix<long> & evaluateIndex,
00215 const ContinuousIndexType & x,
00216 unsigned int splineOrder ) const;
00217
00220 void ApplyMirrorBoundaryConditions(vnl_matrix<long> & evaluateIndex,
00221 unsigned int splineOrder) const;
00222
00223
00224 Iterator m_CIterator;
00225 unsigned long m_MaxNumberInterpolationPoints;
00226 std::vector<IndexType> m_PointsToIndex;
00227
00228 CoefficientFilterPointer m_CoefficientFilter;
00229
00230
00231
00232 bool m_UseImageDirection;
00233
00234 };
00235
00236 }
00237
00238 #ifndef ITK_MANUAL_INSTANTIATION
00239 #include "itkBSplineInterpolateImageFunction.txx"
00240 #endif
00241
00242 #endif
00243
00244 #endif
00245