#ifndef __CPPLUGINSIMAGEFILTERS__BINARYCONTOURIMAGEFILTER__H__ #define __CPPLUGINSIMAGEFILTERS__BINARYCONTOURIMAGEFILTER__H__ #include #include namespace cpPluginsImageFilters { /** */ class cpPluginsImageFilters_EXPORT BinaryContourImageFilter : public cpPlugins::ProcessObject { public: typedef BinaryContourImageFilter Self; typedef cpPlugins::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( BinaryContourImageFilter, cpPlugins::ProcessObject ); cpPlugins_Id_Macro( BinaryContourImageFilter, ImageFilters ); protected: BinaryContourImageFilter( ); virtual ~BinaryContourImageFilter( ); virtual std::string _GenerateData( ) ITK_OVERRIDE; template< class _TImage > inline std::string _GD0( _TImage* image ); template< class _TImage, class _TContourImage > inline std::string _GD1( _TImage* image ); private: // Purposely not implemented BinaryContourImageFilter( const Self& ); Self& operator=( const Self& ); }; } // ecapseman #endif // __CPPLUGINSIMAGEFILTERS__BINARYCONTOURIMAGEFILTER__H__ // eof - $RCSfile$