vtkImageRGBToYBR.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef __vtkImageRGBToYBR_h
00025 #define __vtkImageRGBToYBR_h
00026
00027 #include "vtkThreadedImageAlgorithm.h"
00028 #include "gdcmTypes.h"
00029
00030 class GDCM_EXPORT vtkImageRGBToYBR : public vtkThreadedImageAlgorithm
00031 {
00032 public:
00033 static vtkImageRGBToYBR *New();
00034 vtkTypeRevisionMacro(vtkImageRGBToYBR,vtkThreadedImageAlgorithm);
00035
00036 void PrintSelf(ostream& os, vtkIndent indent);
00037
00038 protected:
00039 vtkImageRGBToYBR();
00040 ~vtkImageRGBToYBR() {};
00041
00042 void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
00043 int ext[6], int id);
00044 private:
00045 vtkImageRGBToYBR(const vtkImageRGBToYBR&);
00046 void operator=(const vtkImageRGBToYBR&);
00047 };
00048
00049 #endif
00050