]> Creatis software - clitk.git/blob - segmentation/clitkAndGenericFilter.h
d67f4dae86498e30d1bd7793b53616c61353bed6
[clitk.git] / segmentation / clitkAndGenericFilter.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 clitkAndGenericFilter_h
19 #define clitkAndGenericFilter_h
20
21 /* =================================================
22  * @file   clitkAndGenericFilter.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 "clitkImageCommon.h"
35 #include "clitkAnd_ggo.h"
36
37 //itk include
38 #include "itkLightObject.h"
39 #include "itkAndImageFilter.h"
40 #include "itkCastImageFilter.h"
41
42 namespace clitk 
43 {
44
45
46   class ITK_EXPORT AndGenericFilter : public itk::LightObject
47   {
48   public:
49     //----------------------------------------
50     // ITK
51     //----------------------------------------
52     typedef AndGenericFilter                   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( AndGenericFilter, LightObject );
62
63
64     //----------------------------------------
65     // Typedefs
66     //----------------------------------------
67
68
69     //----------------------------------------
70     // Set & Get
71     //----------------------------------------    
72     void SetArgsInfo(const args_info_clitkAnd & a)
73     {
74       m_ArgsInfo=a;
75       m_Verbose=m_ArgsInfo.verbose_flag;
76       m_InputFileName=m_ArgsInfo.input_arg;
77     }
78     
79     
80     //----------------------------------------  
81     // Update
82     //----------------------------------------  
83     void Update();
84
85   protected:
86
87     //----------------------------------------  
88     // Constructor & Destructor
89     //----------------------------------------  
90     AndGenericFilter();
91     ~AndGenericFilter() {};
92
93     
94     //----------------------------------------  
95     // Templated members
96     //----------------------------------------  
97     template <unsigned int Dimension>  void UpdateWithDim(std::string PixelType);
98     template <unsigned int Dimension, class PixelType>  void UpdateWithDimAndPixelType();
99
100
101     //----------------------------------------  
102     // Data members
103     //----------------------------------------
104     args_info_clitkAnd m_ArgsInfo;
105     bool m_Verbose;
106     std::string m_InputFileName;
107
108   };
109
110
111 } // end namespace clitk
112
113 #ifndef ITK_MANUAL_INSTANTIATION
114 #include "clitkAndGenericFilter.txx"
115 #endif
116
117 #endif // #define clitkAndGenericFilter_h