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 ===========================================================================**/
19 #ifndef __clitkGenericInterpolator_h
20 #define __clitkGenericInterpolator_h
23 #include "itkNearestNeighborInterpolateImageFunction.h"
24 #include "itkLinearInterpolateImageFunction.h"
25 #include "itkBSplineInterpolateImageFunction.h"
26 #include "itkBSplineInterpolateImageFunctionWithLUT.h"
31 Requires at least the following section is the .ggo file
33 option "interp" - "Interpolation: 0=NN, 1=Linear, 2=BSpline, 3=BLUT" int no default="1"
34 option "interpOrder" - "Order if BLUT or BSpline (0-5)" int no default="3"
35 option "interpSF" - "Sampling factor if BLUT" int no default="20"
37 The use will look something like
39 typedef clitk::GenericInterpolator<InputImageType, double> GenericInterpolatorType;
40 typename GenericInterpolatorType::Pointer genericInterpolator=GenericInterpolatorType::New();
41 genericInterpolator->SetArgsInfo(m_ArgsInfo);
42 typedef itk::InterpolateImageFunction<InputImageType, double> InterpolatorType;
43 typename InterpolatorType::Pointer interpolator=genericInterpolator->GetInterpolatorPointer();
50 template <class args_info_type, class ImageType, class TCoordRep >
51 class GenericInterpolator : public itk::LightObject
54 //==============================================
55 typedef GenericInterpolator Self;
56 typedef itk::LightObject Superclass;
57 typedef itk::SmartPointer<Self> Pointer;
58 typedef itk::SmartPointer<const Self> ConstPointer;
60 typedef itk::InterpolateImageFunction<ImageType, TCoordRep> InterpolatorType;
61 typedef typename InterpolatorType::Pointer InterpolatorPointer;
63 /** Method for creation through the object factory. */
66 //==============================================
68 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 GenericInterpolator();
80 ~GenericInterpolator() {};
83 args_info_type m_ArgsInfo;
84 InterpolatorPointer m_Interpolator;
88 } // end namespace clitk
89 #ifndef ITK_MANUAL_INSTANTIATION
90 #include "clitkGenericInterpolator.txx"
93 #endif // #define __clitkGenericInterpolator_h