]> Creatis software - cpPlugins.git/blob - plugins/cpPluginsImageFilters/UnaryThresholdImageFilter.h
...
[cpPlugins.git] / plugins / cpPluginsImageFilters / UnaryThresholdImageFilter.h
1 #ifndef __CPPLUGINSIMAGEFILTERS__UNARYTHRESHOLDIMAGEFILTER__H__
2 #define __CPPLUGINSIMAGEFILTERS__UNARYTHRESHOLDIMAGEFILTER__H__
3
4 #include <plugins/cpPluginsImageFilters/cpPluginsImageFilters_Export.h>
5 #include <cpPlugins/ProcessObject.h>
6
7 namespace cpPluginsImageFilters
8 {
9   /**
10    */
11   class cpPluginsImageFilters_EXPORT UnaryThresholdImageFilter
12     : public cpPlugins::ProcessObject
13   {
14   public:
15     typedef UnaryThresholdImageFilter      Self;
16     typedef cpPlugins::ProcessObject        Superclass;
17     typedef itk::SmartPointer< Self >       Pointer;
18     typedef itk::SmartPointer< const Self > ConstPointer;
19
20   public:
21     itkNewMacro( Self );
22     itkTypeMacro( UnaryThresholdImageFilter, cpPlugins::ProcessObject );
23     cpPlugins_Id_Macro( UnaryThresholdImageFilter, ImageFilters );
24
25   protected:
26     UnaryThresholdImageFilter( );
27     virtual ~UnaryThresholdImageFilter( );
28
29     virtual void _GenerateData( ) ITK_OVERRIDE;
30
31     template< class _TImage >
32       inline void _GD0( _TImage* image );
33
34   private:
35     // Purposely not implemented
36     UnaryThresholdImageFilter( const Self& );
37     Self& operator=( const Self& );
38   };
39
40 } // ecapseman
41
42 #endif // __CPPLUGINSIMAGEFILTERS__UNARYTHRESHOLDIMAGEFILTER__H__
43
44 // eof - $RCSfile$