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