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