]> Creatis software - clitk.git/blob - tools/clitkVFResampleGenericFilter.h
b4068826b072bcd22d355fa49a73eeede0ad517e
[clitk.git] / tools / clitkVFResampleGenericFilter.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 CLITKIMAGERESAMPLEGENERICFILTER_H
19 #define CLITKIMAGERESAMPLEGENERICFILTER_H
20 /**
21  -------------------------------------------------------------------
22  * @file   clitkVFResampleGenericFilter.h
23  * @author David Sarrut <David.Sarrut@creatis.insa-lyon.fr>
24  * @date   23 Feb 2008 08:37:53
25
26  * @brief  
27  -------------------------------------------------------------------*/
28
29 // clitk include
30 #include "clitkCommon.h"
31 #include "clitkImageCommon.h"
32 #include "clitkImageToImageGenericFilter.h"
33
34 // itk include
35 #include "itkImage.h"
36 #include "itkVectorImage.h"
37 #include "itkFixedArray.h"
38 #include "itkImageFileReader.h"
39 #include "itkImageSeriesReader.h"
40 #include "itkImageFileWriter.h"
41 #include "itkRecursiveGaussianImageFilter.h"
42 #include "itkVectorResampleImageFilter.h"
43 #include "itkAffineTransform.h"
44 #include "itkVectorNearestNeighborInterpolateImageFunction.h"
45 #include "itkVectorLinearInterpolateImageFunction.h"
46 #include "itkBSplineInterpolateImageFunction.h"
47 #include "itkBSplineInterpolateImageFunctionWithLUT.h"
48 #include "itkCommand.h"
49
50 namespace clitk {
51   
52   //--------------------------------------------------------------------
53   class VFResampleGenericFilter: 
54     public clitk::ImageToImageGenericFilter<VFResampleGenericFilter> {
55     
56   public: 
57     // constructor
58     VFResampleGenericFilter();
59
60     // Types
61     typedef VFResampleGenericFilter       Self;
62     typedef itk::SmartPointer<Self>       Pointer;
63     typedef itk::SmartPointer<const Self> ConstPointer;
64
65     // New
66     itkNewMacro(Self);
67     
68     void SetOutputSize(const std::vector<int> & size);
69     void SetOutputSpacing(const std::vector<double> & spacing);
70     void SetGaussianSigma(const std::vector<double> & sigma);
71     void SetInterpolationName(const std::string & inter);
72     void SetDefaultPixelValue(double dpv) { mDefaultPixelValue = dpv;}
73     void SetBSplineOrder(int o) { mBSplineOrder = o; }
74     void SetBLUTSampling(int b) { mSamplingFactors.resize(1); mSamplingFactors[0] = b; }
75
76    //--------------------------------------------------------------------
77     // Main function called each time the filter is updated
78     template<class InputImageType>  
79     void UpdateWithInputImageType();
80
81   protected:
82     template<unsigned int Dim> void InitializeImageType();
83     //--------------------------------------------------------------------
84     std::string mInterpolatorName;
85     std::vector<int> mOutputSize;
86     std::vector<double> mOutputSpacing;
87     std::vector<double> mOutputOrigin;
88     double mDefaultPixelValue;
89     bool mApplyGaussianFilterBefore;
90     std::vector<double> mSigma;
91     int mBSplineOrder;
92     std::vector<int> mSamplingFactors;
93
94     //--------------------------------------------------------------------
95     template<unsigned int Dim, class PixelType, unsigned int DimCompo> 
96     void Update_WithDimAndPixelTypeAndComponent();
97     template<class ImageType>
98     typename ImageType::Pointer ComputeImage(typename ImageType::Pointer inputImage);
99     
100   }; // end class VFResampleGenericFilter
101   //--------------------------------------------------------------------
102     
103 } // end namespace
104 //--------------------------------------------------------------------
105     
106 #endif /* end #define CLITKIMAGERESAMPLEGENERICFILTER_H */
107