#ifndef __CPPLUGINS__PLUGINS__BINARYTHRESHOLDIMAGEFILTER__H__ #define __CPPLUGINS__PLUGINS__BINARYTHRESHOLDIMAGEFILTER__H__ #include #include namespace cpPlugins { namespace BasicFilters { /** */ class cpPluginsBasicFilters_EXPORT BinaryThresholdImageFilter : public cpPlugins::Interface::ImageToImageFilter { public: typedef BinaryThresholdImageFilter Self; typedef cpPlugins::Interface::ImageToImageFilter Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( BinaryThresholdImageFilter, cpPluginsInterfaceImageToImageFilter ); protected: BinaryThresholdImageFilter( ); virtual ~BinaryThresholdImageFilter( ); virtual std::string _GenerateData( ); template< class I > inline std::string _GD0( itk::DataObject* image ); template< class I, class O > inline std::string _RealGD( itk::DataObject* image ); private: // Purposely not implemented BinaryThresholdImageFilter( const Self& ); Self& operator=( const Self& ); }; // --------------------------------------------------------------------- CPPLUGINS_INHERIT_PROVIDER( BinaryThresholdImageFilter ); } // ecapseman } // ecapseman #endif // __CPPLUGINS__PLUGINS__BINARYTHRESHOLDIMAGEFILTER__H__ // eof - $RCSfile$