]> Creatis software - clitk.git/blob - registration/clitkMatrixTransformToVFGenericFilter.h
Debug RTStruct conversion with empty struc
[clitk.git] / registration / clitkMatrixTransformToVFGenericFilter.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 clitkMatrixTransformToVFGenericFilter_h
19 #define clitkMatrixTransformToVFGenericFilter_h
20
21 /* =================================================
22  * @file   clitkMatrixTransformToVFGenericFilter.h
23  * @author 
24  * @date   
25  * 
26  * @brief 
27  * 
28  ===================================================*/
29
30
31 // clitk include
32 #include "clitkIO.h"
33 #include "clitkCommon.h"
34 #include "clitkTransformUtilities.h"
35 #include "clitkMatrixTransformToVF_ggo.h"
36
37 //itk include
38 #include "itkLightObject.h"
39 #if (ITK_VERSION_MAJOR == 4) && (ITK_VERSION_MINOR < 6)
40 # include "itkTransformToDisplacementFieldSource.h"
41 #else
42 # include "itkTransformToDisplacementFieldFilter.h"
43 #endif
44 #include "itkAffineTransform.h"
45
46 namespace clitk 
47 {
48
49
50   class ITK_EXPORT MatrixTransformToVFGenericFilter : public itk::LightObject
51   {
52   public:
53     //----------------------------------------
54     // ITK
55     //----------------------------------------
56     typedef MatrixTransformToVFGenericFilter                   Self;
57     typedef itk::LightObject                   Superclass;
58     typedef itk::SmartPointer<Self>            Pointer;
59     typedef itk::SmartPointer<const Self>      ConstPointer;
60    
61     // Method for creation through the object factory
62     itkNewMacro(Self);  
63
64     // Run-time type information (and related methods)
65     itkTypeMacro( MatrixTransformToVFGenericFilter, LightObject );
66
67
68     //----------------------------------------
69     // Typedefs
70     //----------------------------------------
71
72
73     //----------------------------------------
74     // Set & Get
75     //----------------------------------------    
76     void SetArgsInfo(const args_info_clitkMatrixTransformToVF & a)
77     {
78       m_ArgsInfo=a;
79       m_Verbose=m_ArgsInfo.verbose_flag;
80     }
81     
82     
83     //----------------------------------------  
84     // Update
85     //----------------------------------------  
86     void Update();
87
88   protected:
89
90     //----------------------------------------  
91     // Constructor & Destructor
92     //----------------------------------------  
93     MatrixTransformToVFGenericFilter();
94     ~MatrixTransformToVFGenericFilter() {};
95
96     
97     //----------------------------------------  
98     // Templated members
99     //----------------------------------------  
100     template <unsigned int Dimension>  void UpdateWithDim();
101     //template <unsigned int Dimension, class PixelType>  void UpdateWithDimAndPixelType();
102
103
104     //----------------------------------------  
105     // Data members
106     //----------------------------------------
107     args_info_clitkMatrixTransformToVF m_ArgsInfo;
108     bool m_Verbose;
109
110   };
111
112
113 } // end namespace clitk
114
115 #ifndef ITK_MANUAL_INSTANTIATION
116 #include "clitkMatrixTransformToVFGenericFilter.txx"
117 #endif
118
119 #endif // #define clitkMatrixTransformToVFGenericFilter_h