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