]> Creatis software - clitk.git/blob - registration/clitkMatrixTransformToVFGenericFilter.h
changes in license header
[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 #include "itkTransformToDeformationFieldSource.h"
40 #include "itkAffineTransform.h"
41
42 namespace clitk 
43 {
44
45
46   class ITK_EXPORT MatrixTransformToVFGenericFilter : public itk::LightObject
47   {
48   public:
49     //----------------------------------------
50     // ITK
51     //----------------------------------------
52     typedef MatrixTransformToVFGenericFilter                   Self;
53     typedef itk::LightObject                   Superclass;
54     typedef itk::SmartPointer<Self>            Pointer;
55     typedef itk::SmartPointer<const Self>      ConstPointer;
56    
57     // Method for creation through the object factory
58     itkNewMacro(Self);  
59
60     // Run-time type information (and related methods)
61     itkTypeMacro( MatrixTransformToVFGenericFilter, LightObject );
62
63
64     //----------------------------------------
65     // Typedefs
66     //----------------------------------------
67
68
69     //----------------------------------------
70     // Set & Get
71     //----------------------------------------    
72     void SetArgsInfo(const args_info_clitkMatrixTransformToVF & a)
73     {
74       m_ArgsInfo=a;
75       m_Verbose=m_ArgsInfo.verbose_flag;
76     }
77     
78     
79     //----------------------------------------  
80     // Update
81     //----------------------------------------  
82     void Update();
83
84   protected:
85
86     //----------------------------------------  
87     // Constructor & Destructor
88     //----------------------------------------  
89     MatrixTransformToVFGenericFilter();
90     ~MatrixTransformToVFGenericFilter() {};
91
92     
93     //----------------------------------------  
94     // Templated members
95     //----------------------------------------  
96     template <unsigned int Dimension>  void UpdateWithDim();
97     //template <unsigned int Dimension, class PixelType>  void UpdateWithDimAndPixelType();
98
99
100     //----------------------------------------  
101     // Data members
102     //----------------------------------------
103     args_info_clitkMatrixTransformToVF m_ArgsInfo;
104     bool m_Verbose;
105
106   };
107
108
109 } // end namespace clitk
110
111 #ifndef ITK_MANUAL_INSTANTIATION
112 #include "clitkMatrixTransformToVFGenericFilter.txx"
113 #endif
114
115 #endif // #define clitkMatrixTransformToVFGenericFilter_h