]> Creatis software - clitk.git/blob - tools/clitkProfileImageGenericFilter.h
Merge branch 'master' of git.creatis.insa-lyon.fr:clitk
[clitk.git] / tools / clitkProfileImageGenericFilter.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
19 #ifndef clitkProfileImageGenericFilter_h
20 #define clitkProfileImageGenericFilter_h
21
22 #include "clitkIO.h"
23 #include "clitkImageToImageGenericFilter.h"
24 #include "clitkProfileImage_ggo.h"
25
26 #include <vtkIntArray.h>
27 #include <vtkFloatArray.h>
28
29 //--------------------------------------------------------------------
30 namespace clitk 
31 {
32   
33   class ITK_EXPORT ProfileImageGenericFilter: 
34     public ImageToImageGenericFilter<ProfileImageGenericFilter>
35   {
36     
37   public:
38     //--------------------------------------------------------------------
39     typedef ProfileImageGenericFilter         Self;
40     typedef itk::SmartPointer<Self>           Pointer;
41     typedef itk::SmartPointer<const Self>     ConstPointer;
42     typedef args_info_clitkProfileImage       args_info_type;
43    
44     //--------------------------------------------------------------------
45     // Method for creation through the object factory
46     // and Run-time type information (and related methods)
47     itkNewMacro(Self);  
48     itkTypeMacro(ProfileImageGenericFilter, LightObject);
49
50     //--------------------------------------------------------------------
51     void SetArgsInfo(const args_info_type & a);
52
53     //--------------------------------------------------------------------
54     // Main function called each time the filter is updated
55     template<class InputImageType>  
56     void UpdateWithInputImageType();
57     
58     vtkFloatArray* GetArrayX();
59     vtkFloatArray* GetArrayY();
60     vtkFloatArray* GetCoord();
61
62   protected:
63     ProfileImageGenericFilter();
64     template<unsigned int Dim> void InitializeImageType();
65     args_info_type mArgsInfo;
66     
67   
68     vtkSmartPointer<vtkFloatArray> mArrayX;
69     vtkSmartPointer<vtkFloatArray> mArrayY;
70     vtkSmartPointer<vtkFloatArray> mCoord;
71     
72     
73   }; // end class
74   //--------------------------------------------------------------------
75     
76 } // end namespace clitk
77 //--------------------------------------------------------------------
78
79 #endif // #define clitkProfileImageGenericFilter_h