]> Creatis software - FrontAlgorithms.git/blob - lib/fpa/Image/RegionGrow.hxx
...
[FrontAlgorithms.git] / lib / fpa / Image / RegionGrow.hxx
1 #ifndef __FPA__IMAGE__REGIONGROW__HXX__
2 #define __FPA__IMAGE__REGIONGROW__HXX__
3
4 // -------------------------------------------------------------------------
5 template< class I, class O >
6 fpa::Image::RegionGrow< I, O >::
7 RegionGrow( )
8   : Superclass( )
9 {
10 }
11
12 // -------------------------------------------------------------------------
13 template< class I, class O >
14 fpa::Image::RegionGrow< I, O >::
15 ~RegionGrow( )
16 {
17 }
18
19 // -------------------------------------------------------------------------
20 template< class I, class O >
21 void fpa::Image::RegionGrow< I, O >::
22 _InitResults( )
23 {
24   this->Superclass::_InitResults( );
25   if( this->m_GrowingFunction.IsNotNull( ) )
26     this->m_GrowingFunction->SetSpace( this->GetInput( ) );
27   this->GetOutput( )->FillBuffer( this->m_OutsideValue );
28 }
29
30 #endif // __FPA__IMAGE__REGIONGROW__HXX__
31
32 // eof - $RCSfile$