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