]> Creatis software - FrontAlgorithms.git/blob - libs/fpa/Base/RegionGrow.h
ea9008af8ad3191a572534a06ec172f44319d85f
[FrontAlgorithms.git] / libs / fpa / Base / RegionGrow.h
1 #ifndef __fpa__Base__RegionGrow__h__
2 #define __fpa__Base__RegionGrow__h__
3
4 #include <queue>
5 #include <fpa/Base/QueueAlgorithm.h>
6 #include <fpa/Base/Functors/RegionGrow/Base.h>
7
8 namespace fpa
9 {
10   namespace Base
11   {
12     /**
13      */
14     template< class _TSuperclass >
15     class RegionGrow
16       : public fpa::Base::QueueAlgorithm< _TSuperclass >
17     {
18     public:
19       typedef RegionGrow                                Self;
20       typedef fpa::Base::QueueAlgorithm< _TSuperclass > Superclass;
21       typedef itk::SmartPointer< Self >                 Pointer;
22       typedef itk::SmartPointer< const Self >           ConstPointer;
23
24       typedef typename Superclass::TOutput TOutput;
25       typedef typename Superclass::TVertex TVertex;
26       typedef fpa::Base::Functors::RegionGrow::Base< TVertex, TOutput > TGrowFunction;
27
28     protected:
29       typedef typename Superclass::_TQueueNode _TQueueNode;
30
31     public:
32       itkTypeMacro( RegionGrow, Algorithm );
33
34     public:
35       TGrowFunction* GetGrowFunction( );
36       const TGrowFunction* GetGrowFunction( ) const;
37       TOutput GetInsideValue( ) const;
38       TOutput GetOutsideValue( ) const;
39
40       void SetGrowFunction( TGrowFunction* f );
41       void SetInsideValue( const TOutput& v );
42       void SetOutsideValue( const TOutput& v );
43
44     protected:
45       RegionGrow( );
46       virtual ~RegionGrow( );
47
48       virtual bool _UpdateValue(
49         _TQueueNode& v, const _TQueueNode& p
50         ) override;
51       virtual TOutput _GetInputValue(
52         const TVertex& v, const TVertex& p
53         ) override;
54       virtual bool _UpdateResult( _TQueueNode& n ) override;
55
56
57     private:
58       // Purposely not defined
59       RegionGrow( const Self& other );
60       Self& operator=( const Self& other );
61
62     protected:
63       typename TGrowFunction::Pointer m_GrowFunction;
64     };
65
66   } // ecapseman
67
68 } // ecapseman
69
70 #ifndef ITK_MANUAL_INSTANTIATION
71 #  include <fpa/Base/RegionGrow.hxx>
72 #endif // ITK_MANUAL_INSTANTIATION
73
74 #endif // __fpa__Base__RegionGrow__h__
75
76 // eof - $RCSfile$