]> Creatis software - FrontAlgorithms.git/blob - lib/fpa/Filters/Image/RegionGrow.h
...
[FrontAlgorithms.git] / lib / fpa / Filters / Image / RegionGrow.h
1 // =========================================================================
2 // @author Leonardo Florez Valencia
3 // @email florez-l@javeriana.edu.co
4 // =========================================================================
5 #ifndef __fpa__Filters__Image__RegionGrow__h__
6 #define __fpa__Filters__Image__RegionGrow__h__
7
8 #include <fpa/Filters/RegionGrow.h>
9 #include <fpa/Filters/Image/DefaultTraits.h>
10 #include <fpa/Filters/Image/Interface.h>
11
12 namespace fpa
13 {
14   namespace Filters
15   {
16     namespace Image
17     {
18       /**
19        */
20       template< class _TInputImage, class _TOutputImage, class _TMark = unsigned char, class _TTraits = fpa::Filters::Image::DefaultTraits< _TInputImage, _TOutputImage, _TMark > >
21       class RegionGrow
22         : public fpa::Filters::RegionGrow< fpa::Filters::Image::Interface< _TTraits > >
23       {
24       public:
25         typedef _TTraits TTraits;
26
27         typedef fpa::Filters::Image::Interface< TTraits > TInterface;
28         typedef fpa::Filters::RegionGrow< TInterface >    Superclass;
29         typedef RegionGrow                                Self;
30         typedef itk::SmartPointer< Self >                 Pointer;
31         typedef itk::SmartPointer< const Self >           ConstPointer;
32
33       public:
34         itkNewMacro( Self );
35
36       protected:
37         RegionGrow( )
38           : Superclass( )
39           {
40           }
41         virtual ~RegionGrow( )
42           {
43           }
44
45       private:
46         RegionGrow( const Self& other );
47         Self& operator=( const Self& other );
48       };
49
50     } // ecapseman
51
52   } // ecapseman
53
54 } // ecapseman
55
56 #endif // __fpa__Filters__Image__RegionGrow__h__
57 // eof - $RCSfile$