1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
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
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.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #ifndef __clitkGenericVectorInterpolator_h
19 #define __clitkGenericVectorInterpolator_h
20 #include "clitkImageCommon.h"
23 #include "itkVectorNearestNeighborInterpolateImageFunction.h"
24 #include "itkVectorLinearInterpolateImageFunction.h"
25 #include "clitkVectorBSplineInterpolateImageFunction.h"
26 #include "clitkVectorBSplineInterpolateImageFunctionWithLUT.h"
30 Requires at least the following section is the .ggo file
32 option "interpVF" - "Interpolation: 0=NN, 1=Linear, 2=BSpline, 3=BLUT" int no default="1"
33 option "interpVFOrder" - "Order if BLUT or BSpline (0-5)" int no default="3"
34 option "interpVFSF" - "Sampling factor if BLUT" int no default="20"
36 The use will look something like
38 typedef clitk::GenericVectorInterpolator<InputImageType, double> GenericVectorInterpolatorType;
39 typename GenericVectorInterpolatorType::Pointer genericInterpolator=GenericVectorInterpolatorType::New();
40 genericInterpolator->SetArgsInfo(m_ArgsInfo);
41 typedef itk::VectorInterpolateImageFunction<InputImageType, double> InterpolatorType;
42 typename InterpolatorType::Pointer interpolator=genericInterpolator->GetInterpolatorPointer();
49 template <class args_info_type, class ImageType, class TCoordRep >
50 class GenericVectorInterpolator : public itk::LightObject
53 //==============================================
54 typedef GenericVectorInterpolator Self;
55 typedef itk::LightObject Superclass;
56 typedef itk::SmartPointer<Self> Pointer;
57 typedef itk::SmartPointer<const Self> ConstPointer;
59 typedef itk::VectorInterpolateImageFunction<ImageType, TCoordRep> InterpolatorType;
60 typedef typename InterpolatorType::Pointer InterpolatorPointer;
62 /** Method for creation through the object factory. */
65 //==============================================
67 void SetArgsInfo(args_info_type args_info)
69 m_ArgsInfo= args_info;
70 m_Verbose=m_ArgsInfo.verbose_flag;
73 //==============================================
75 InterpolatorPointer GetInterpolatorPointer(void);
77 //==============================================
79 GenericVectorInterpolator();
80 ~GenericVectorInterpolator() {};
83 args_info_type m_ArgsInfo;
84 InterpolatorPointer m_Interpolator;
88 } // end namespace clitk
89 #ifndef ITK_MANUAL_INSTANTIATION
90 #include "clitkGenericVectorInterpolator.txx"
93 #endif // #define __clitkGenericVectorInterpolator_h