// ========================================================================= // @author Leonardo Florez Valencia // @email florez-l@javeriana.edu.co // ========================================================================= #ifndef __fpa__Image__RegionGrow__h__ #define __fpa__Image__RegionGrow__h__ #include #include #include #include #include namespace fpa { namespace Image { /** */ template< class _TInputImage, class _TOutputImage, class _TFrontId = unsigned char, class _TTraits = fpa::Image::DefaultTraits< _TInputImage, _TOutputImage, _TFrontId > > class RegionGrow : public fpa::Base::RegionGrow< fpa::Image::Algorithm< _TTraits, fpa::Base::MarksInterfaceWithCollisions< _TTraits >, fpa::Base::SeedsInterface< _TTraits > > > { public: typedef _TInputImage TInputImage; typedef _TOutputImage TOutputImage; typedef _TTraits TTraits; typedef fpa::Base::MarksInterfaceWithCollisions< TTraits > TMarksInterface; typedef fpa::Base::SeedsInterface< TTraits > TSeedsInterface; typedef fpa::Image::Algorithm< TTraits, TMarksInterface, TSeedsInterface > TAlgorithm; typedef fpa::Base::RegionGrow< TAlgorithm > Superclass; typedef RegionGrow Self; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; fpa_Base_TraitTypes( typename TTraits ); public: itkNewMacro( Self ); itkTypeMacro( fpa::Image::RegionGrow, fpa::Base::RegionGrow ); protected: RegionGrow( ) : Superclass( ) { } virtual ~RegionGrow( ) { } private: // Purposely not implemented. RegionGrow( const Self& other ); Self& operator=( const Self& other ); }; } // ecapseman } // ecapseman #endif // __fpa__Image__RegionGrow__h__ // eof - $RCSfile$