]> Creatis software - cpPlugins.git/blob - plugins/cpPluginsImageFilters/RegionOfInterestImageFilter.h
b1294b14ee5230c3b739c251ff61dc86b6417d32
[cpPlugins.git] / plugins / cpPluginsImageFilters / RegionOfInterestImageFilter.h
1 #ifndef __CPPLUGINSIMAGEFILTERS__REGIONOFINTERESTIMAGEFILTER__H__
2 #define __CPPLUGINSIMAGEFILTERS__REGIONOFINTERESTIMAGEFILTER__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 RegionOfInterestImageFilter
12     : public cpPlugins::ProcessObject
13   {
14   public:
15     typedef RegionOfInterestImageFilter     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( RegionOfInterestImageFilter, cpPlugins::ProcessObject );
23     cpPlugins_Id_Macro( RegionOfInterestImageFilter, ImageFilters );
24
25   protected:
26     RegionOfInterestImageFilter( );
27     virtual ~RegionOfInterestImageFilter( );
28
29     virtual void _GenerateData( ) ITK_OVERRIDE;
30
31     template< class _TInputImage >
32       inline void _GD0( _TInputImage* image );
33
34   private:
35     // Purposely not implemented
36     RegionOfInterestImageFilter( const Self& );
37     Self& operator=( const Self& );
38   };
39
40 } // ecapseman
41
42 #endif // __CPPLUGINSIMAGEFILTERS__REGIONOFINTERESTIMAGEFILTER__H__
43
44 // eof - $RCSfile$