]> Creatis software - clitk.git/blob - itk/itkBSplineInterpolateImageFunctionWithLUT.h
changes in license header
[clitk.git] / itk / itkBSplineInterpolateImageFunctionWithLUT.h
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #ifndef ITKBSPLINEINTERPOLATEIMAGEFUNCTIONWITHLUT_H
19 #define ITKBSPLINEINTERPOLATEIMAGEFUNCTIONWITHLUT_H
20
21 #include "itkBSplineWeightsCalculator.h"
22 #include <itkBSplineInterpolateImageFunction.h>
23
24 namespace itk {
25   
26   template <
27     class TImageType, 
28     class TCoordRep = double,
29     class TCoefficientType = double >
30   class ITK_EXPORT BSplineInterpolateImageFunctionWithLUT : 
31     public itk::BSplineInterpolateImageFunction<TImageType,TCoordRep,TCoefficientType> {
32     
33   public: 
34     /** Class typedefs */
35     typedef BSplineInterpolateImageFunctionWithLUT<TImageType,TCoordRep, TCoefficientType> Self;
36     typedef BSplineInterpolateImageFunction<TImageType,TCoordRep, TCoefficientType>  Superclass;
37     typedef SmartPointer<Self> Pointer;
38     typedef SmartPointer<const Self> ConstPointer;
39     typedef typename Superclass::OutputType OutputType;
40     typedef typename Superclass::ContinuousIndexType ContinuousIndexType;
41     typedef typename TImageType::IndexType           IndexType;
42     typedef typename TImageType::IndexValueType      IndexValueType;
43     typedef typename TImageType::SizeType            SizeType;
44     typedef typename TImageType::SpacingType         SpacingType;
45
46     /** New macro for creation of through a Smart Pointer */
47     itkNewMacro(Self);
48     
49     /** Setting LUT sampling (one parameters by dimension or a single
50         one for all dim); Default is 20 (for each dim) **/
51     void SetLUTSamplingFactor(const int& s);
52     void SetLUTSamplingFactors(const SizeType& s);
53
54     /** Get/Sets the Spline Order, supports 0th - 5th order
55      *  splines. The default is a 3rd order spline. */
56     void SetSplineOrder(const unsigned int & SplineOrder);
57
58     //JV this is added to support different degrees over each dimension
59     void SetSplineOrders(const  SizeType & SplineOrders);
60
61     /** Set the input image.  This must be set by the user. */
62     virtual void SetInputImage(const TImageType * inputData);
63     
64     /** Evaluate the function at a ContinuousIndex position.
65         Overwritten for taking LUT into account */  
66     virtual OutputType EvaluateAtContinuousIndex(const ContinuousIndexType & index ) const;
67     
68     /** Static convenient functions to compute BSpline weights for
69         various order, dimension, sampling ... **/
70     static void ComputeBlendingWeights(int dim, int order, int sampling, TCoefficientType * weights);
71
72   protected:
73     BSplineInterpolateImageFunctionWithLUT();
74     ~BSplineInterpolateImageFunctionWithLUT(){;}
75
76     SizeType               mSupport;            // nb of coef values used for interpolation (order+1) in 1 dimension
77     SizeType               mHalfSupport;        // half size of the previous
78     unsigned int           mSupportSize;        // Total support size for all dimension
79     std::vector<int>       mSupportOffset;      // Memory pointer offset for going from one coef position to the other (inside the whole support)
80     std::vector<IndexType> mSupportIndex;       // nD Index of all support values
81     IndexType              mInputMemoryOffset;  // Memory dimension offsets for input image
82
83     /** Sampling factors for LUT weights **/
84     SizeType               mSamplingFactors;
85     bool                   mWeightsAreUpToDate;
86     SizeType mSplineOrders;
87
88     // Filter to compute weights
89     itk::BSplineWeightsCalculator<TCoefficientType,TImageType::ImageDimension> mWeightsCalculator;
90
91     // Convenient functions
92     void UpdatePrecomputedWeights();
93     void UpdateWeightsProperties();
94     IndexType GetSampleIndexOfPixelPosition(const ContinuousIndexType & x, IndexType & EvaluateIndex) const;
95
96
97   }; // end class itkBSplineInterpolateImageFunctionWithLUT
98 } // end namespace
99
100 #ifndef ITK_MANUAL_INSTANTIATION
101 #include "itkBSplineInterpolateImageFunctionWithLUT.txx"
102 #endif
103
104 #endif /* end #define ITKBSPLINEINTERPOLATEIMAGEFUNCTIONWITHLUT_H */