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://oncora1.lyon.fnclcc.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 __clitkGenericInterpolator_h
19 #define __clitkGenericInterpolator_h
20 #include "clitkImageCommon.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 something like
39 typedef clitk::GenericVectorInterpolator<InputImageType, double> GenericVectorInterpolatorType;
40 typename GenericVectorInterpolatorType::Pointer genericInterpolator=GenericVectorInterpolatorType::New();
41 genericInterpolator->SetArgsInfo(m_ArgsInfo);
42 typedef itk::VectorInterpolateImageFunction<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)
70 m_ArgsInfo= args_info;
71 m_Verbose=m_ArgsInfo.verbose_flag;
74 //==============================================
76 InterpolatorPointer GetInterpolatorPointer(void);
78 //==============================================
80 GenericInterpolator();
81 ~GenericInterpolator() {};
84 args_info_type m_ArgsInfo;
85 InterpolatorPointer m_Interpolator;
89 } // end namespace clitk
90 #ifndef ITK_MANUAL_INSTANTIATION
91 #include "clitkGenericInterpolator.txx"
94 #endif // #define __clitkGenericInterpolator_h