1 // =========================================================================
2 // @author Leonardo Florez Valencia
3 // @email florez-l@javeriana.edu.co
4 // =========================================================================
6 #ifndef __fpa__Base__RegionGrow__hxx__
7 #define __fpa__Base__RegionGrow__hxx__
9 // -------------------------------------------------------------------------
10 template< class _TAlgorithm >
11 itk::ModifiedTimeType fpa::Base::RegionGrow< _TAlgorithm >::
14 itk::ModifiedTimeType t = this->Superclass::GetMTime( );
15 if( this->m_ValuePredicate.IsNotNull( ) )
17 itk::ModifiedTimeType q = this->m_ValuePredicate->GetMTime( );
21 if( this->m_VertexPredicate.IsNotNull( ) )
23 itk::ModifiedTimeType q = this->m_VertexPredicate->GetMTime( );
31 // -------------------------------------------------------------------------
32 template< class _TAlgorithm >
33 typename fpa::Base::RegionGrow< _TAlgorithm >::
34 TOutputValue fpa::Base::RegionGrow< _TAlgorithm >::
35 GetOutsideValue( ) const
37 return( this->GetInitValue( ) );
40 // -------------------------------------------------------------------------
41 template< class _TAlgorithm >
42 void fpa::Base::RegionGrow< _TAlgorithm >::
43 SetOutsideValue( const TOutputValue& v )
45 this->SetInitValue( v );
48 // -------------------------------------------------------------------------
49 template< class _TAlgorithm >
50 void fpa::Base::RegionGrow< _TAlgorithm >::
51 SetPredicate( TValuePredicate* p )
53 if( this->m_ValuePredicate.GetPointer( ) != p )
55 this->m_ValuePredicate = p;
61 // -------------------------------------------------------------------------
62 template< class _TAlgorithm >
63 void fpa::Base::RegionGrow< _TAlgorithm >::
64 SetPredicate( TVertexPredicate* p )
66 if( this->m_VertexPredicate.GetPointer( ) != p )
68 this->m_VertexPredicate = p;
74 // -------------------------------------------------------------------------
75 template< class _TAlgorithm >
76 fpa::Base::RegionGrow< _TAlgorithm >::
79 m_InsideValue( TOutputValue( 1 ) )
81 this->SetInitValue( TOutputValue( 0 ) );
84 // -------------------------------------------------------------------------
85 template< class _TAlgorithm >
86 fpa::Base::RegionGrow< _TAlgorithm >::
91 // -------------------------------------------------------------------------
92 template< class _TAlgorithm >
93 bool fpa::Base::RegionGrow< _TAlgorithm >::
94 _ComputeOutputValue( TNode& n )
96 TInputValue value = this->_GetInputValue( n.Vertex );
98 if( this->m_ValuePredicate.IsNotNull( ) )
99 inside = this->m_ValuePredicate->Evaluate( value );
100 if( this->m_VertexPredicate.IsNotNull( ) )
101 inside &= this->m_VertexPredicate->Evaluate( n.Vertex );
102 n.Value = ( inside )? this->m_InsideValue: this->m_InitValue;
106 // -------------------------------------------------------------------------
107 template< class _TAlgorithm >
108 void fpa::Base::RegionGrow< _TAlgorithm >::
111 this->m_Queue.clear( );
114 // -------------------------------------------------------------------------
115 template< class _TAlgorithm >
116 typename fpa::Base::RegionGrow< _TAlgorithm >::
117 TNode fpa::Base::RegionGrow< _TAlgorithm >::
120 TNode n = this->m_Queue.front( );
121 this->m_Queue.pop_front( );
125 // -------------------------------------------------------------------------
126 template< class _TAlgorithm >
127 void fpa::Base::RegionGrow< _TAlgorithm >::
128 _QueuePush( const TNode& node )
130 this->m_Queue.push_back( node );
133 // -------------------------------------------------------------------------
134 template< class _TAlgorithm >
135 unsigned long fpa::Base::RegionGrow< _TAlgorithm >::
138 return( this->m_Queue.size( ) );
141 // -------------------------------------------------------------------------
142 template< class _TAlgorithm >
143 void fpa::Base::RegionGrow< _TAlgorithm >::
144 _PrepareSeeds( TNodes& nodes )
146 typename TNodes::iterator nIt = nodes.begin( );
147 for( ; nIt != nodes.end( ); ++nIt )
148 nIt->Value = this->m_InsideValue;
151 #endif // __fpa__Base__RegionGrow__hxx__