]> Creatis software - clitk.git/blob - tools/clitkAffineTransformGenericFilter.h
482114b0adfd4d9e342855a7817c20cbdf8e1076
[clitk.git] / tools / clitkAffineTransformGenericFilter.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 clitkAffineTransformGenericFilter_h
19 #define clitkAffineTransformGenericFilter_h
20
21 /* =================================================
22  * @file   clitkAffineTransformGenericFilter.h
23  * @author jefvdmb@gmail.com
24  * @date   
25  * 
26  * @brief 
27  * 
28  ===================================================*/
29
30
31 // clitk include
32 #include "clitkIO.h"
33 #include "clitkCommon.h"
34 #include "clitkAffineTransform_ggo.h"
35 #include "clitkTransformUtilities.h"
36 #include "clitkGenericInterpolator.h"
37 #include "clitkGenericVectorInterpolator.h"
38
39 //itk include
40 #include "itkLightObject.h"
41 #include "itkAffineTransform.h"
42 #include "itkResampleImageFilter.h"
43 #include "itkVectorResampleImageFilter.h"
44
45
46 namespace clitk 
47 {
48
49
50   template<class args_info_type>
51   class ITK_EXPORT AffineTransformGenericFilter : public itk::LightObject
52   {
53   public:
54     //----------------------------------------
55     // ITK
56     //----------------------------------------
57     typedef AffineTransformGenericFilter                   Self;
58     typedef itk::LightObject                   Superclass;
59     typedef itk::SmartPointer<Self>            Pointer;
60     typedef itk::SmartPointer<const Self>      ConstPointer;
61    
62     // Method for creation through the object factory
63     itkNewMacro(Self);  
64
65     // Run-time type information (and related methods)
66     itkTypeMacro( AffineTransformGenericFilter, LightObject );
67
68
69     //----------------------------------------
70     // Typedefs
71     //----------------------------------------
72
73
74     //----------------------------------------
75     // Set & Get
76     //----------------------------------------
77     void SetArgsInfo(const args_info_type & a)
78     {
79       m_ArgsInfo=a;
80       m_Verbose=m_ArgsInfo.verbose_flag;
81       m_InputFileName=m_ArgsInfo.input_arg;
82     }
83     
84     
85     //----------------------------------------
86     // Update
87     //----------------------------------------
88     void Update();
89
90
91     //----------------------------------------
92     // Compute bounding box
93     //----------------------------------------
94     vnl_vector<double> ComputeSize(vnl_vector<double> inputSize, vnl_matrix<double> transformationMatrix, bool returnMin);
95
96   protected:
97
98     //----------------------------------------
99     // Constructor & Destructor
100     //----------------------------------------
101     AffineTransformGenericFilter();
102     ~AffineTransformGenericFilter() {};
103
104     
105     //----------------------------------------
106     // Templated members
107     //----------------------------------------
108     template <unsigned int Dimension>  void UpdateWithDim(std::string PixelType, int Components);
109     template <unsigned int Dimension, class PixelType>  void UpdateWithDimAndPixelType();
110     template <unsigned int Dimension, class PixelType>  void UpdateWithDimAndVectorType();
111
112     //----------------------------------------
113     // Data members
114     //----------------------------------------
115     args_info_type m_ArgsInfo;
116     bool m_Verbose;
117     std::string m_InputFileName;
118
119   };
120
121
122 } // end namespace clitk
123
124 #ifndef ITK_MANUAL_INSTANTIATION
125 #include "clitkAffineTransformGenericFilter.txx"
126 #endif
127
128 #endif // #define clitkAffineTransformGenericFilter_h