]> Creatis software - FrontAlgorithms.git/blob - lib/fpa/Base/RegionGrow.hxx
18bb1324518c0d637813e46cbc7b3dd8f7601773
[FrontAlgorithms.git] / lib / fpa / Base / RegionGrow.hxx
1 // =========================================================================
2 // @author Leonardo Florez Valencia
3 // @email florez-l@javeriana.edu.co
4 // =========================================================================
5
6 #ifndef __fpa__Base__RegionGrow__hxx__
7 #define __fpa__Base__RegionGrow__hxx__
8
9 // -------------------------------------------------------------------------
10 template< class _TAlgorithm >
11 itk::ModifiedTimeType fpa::Base::RegionGrow< _TAlgorithm >::
12 GetMTime( ) const
13 {
14   itk::ModifiedTimeType t = this->Superclass::GetMTime( );
15   if( this->m_ValuePredicate.IsNotNull( ) )
16   {
17     itk::ModifiedTimeType q = this->m_ValuePredicate->GetMTime( );
18     t = ( q < t )? q: t;
19
20   } // fi
21   if( this->m_VertexPredicate.IsNotNull( ) )
22   {
23     itk::ModifiedTimeType q = this->m_VertexPredicate->GetMTime( );
24     t = ( q < t )? q: t;
25
26   } // fi
27
28   return( t );
29 }
30
31 // -------------------------------------------------------------------------
32 template< class _TAlgorithm >
33 typename fpa::Base::RegionGrow< _TAlgorithm >::
34 TOutputValue fpa::Base::RegionGrow< _TAlgorithm >::
35 GetOutsideValue( ) const
36 {
37   return( this->GetInitValue( ) );
38 }
39
40 // -------------------------------------------------------------------------
41 template< class _TAlgorithm >
42 void fpa::Base::RegionGrow< _TAlgorithm >::
43 SetOutsideValue( const TOutputValue& v )
44 {
45   this->SetInitValue( v );
46 }
47
48 // -------------------------------------------------------------------------
49 template< class _TAlgorithm >
50 void fpa::Base::RegionGrow< _TAlgorithm >::
51 SetPredicate( TValuePredicate* p )
52 {
53   if( this->m_ValuePredicate.GetPointer( ) != p )
54   {
55     this->m_ValuePredicate = p;
56     this->Modified( );
57
58   } // fi
59 }
60
61 // -------------------------------------------------------------------------
62 template< class _TAlgorithm >
63 void fpa::Base::RegionGrow< _TAlgorithm >::
64 SetPredicate( TVertexPredicate* p )
65 {
66   if( this->m_VertexPredicate.GetPointer( ) != p )
67   {
68     this->m_VertexPredicate = p;
69     this->Modified( );
70
71   } // fi
72 }
73
74 // -------------------------------------------------------------------------
75 template< class _TAlgorithm >
76 fpa::Base::RegionGrow< _TAlgorithm >::
77 RegionGrow( )
78   : Superclass( ),
79     m_InsideValue( TOutputValue( 1 ) )
80 {
81   this->SetInitValue( TOutputValue( 0 ) );
82 }
83
84 // -------------------------------------------------------------------------
85 template< class _TAlgorithm >
86 fpa::Base::RegionGrow< _TAlgorithm >::
87 ~RegionGrow( )
88 {
89 }
90
91 // -------------------------------------------------------------------------
92 template< class _TAlgorithm >
93 typename fpa::Base::RegionGrow< _TAlgorithm >::
94 TOutputValue fpa::Base::RegionGrow< _TAlgorithm >::
95 _ComputeOutputValue( const TNode& n )
96 {
97   TInputValue value = this->_GetInputValue( n.Vertex );
98   bool inside = false;
99   if( this->m_ValuePredicate.IsNotNull( ) )
100     inside = this->m_ValuePredicate->Evaluate( value );
101   if( this->m_VertexPredicate.IsNotNull( ) )
102     inside &= this->m_VertexPredicate->Evaluate( n.Vertex );
103   return( ( inside )? this->m_InsideValue: this->m_InitValue );
104 }
105
106 // -------------------------------------------------------------------------
107 template< class _TAlgorithm >
108 void fpa::Base::RegionGrow< _TAlgorithm >::
109 _QueueInit( )
110 {
111   typedef typename Superclass::TSeedsInterface::TSeeds::iterator _TIt;
112
113   this->Superclass::_QueueInit( );
114   for( _TIt sIt = this->BeginSeeds( ); sIt != this->EndSeeds( ); ++sIt )
115     sIt->Value = this->m_InsideValue;
116 }
117
118 // -------------------------------------------------------------------------
119 template< class _TAlgorithm >
120 void fpa::Base::RegionGrow< _TAlgorithm >::
121 _QueueClear( )
122 {
123   this->m_Queue.clear( );
124 }
125
126 // -------------------------------------------------------------------------
127 template< class _TAlgorithm >
128 typename fpa::Base::RegionGrow< _TAlgorithm >::
129 TNode fpa::Base::RegionGrow< _TAlgorithm >::
130 _QueuePop( )
131 {
132   TNode n = this->m_Queue.front( );
133   this->m_Queue.pop_front( );
134   return( n );
135 }
136
137 // -------------------------------------------------------------------------
138 template< class _TAlgorithm >
139 void fpa::Base::RegionGrow< _TAlgorithm >::
140 _QueuePush( const TNode& node )
141 {
142   this->m_Queue.push_back( node );
143 }
144
145 // -------------------------------------------------------------------------
146 template< class _TAlgorithm >
147 unsigned long fpa::Base::RegionGrow< _TAlgorithm >::
148 _QueueSize( ) const
149 {
150   return( this->m_Queue.size( ) );
151 }
152
153 #endif // __fpa__Base__RegionGrow__hxx__
154
155 // eof - $RCSfile$