vtkImageYBRToRGB.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 __vtkImageYBRToRGB_h
00025 #define __vtkImageYBRToRGB_h
00026
00027 #include "vtkThreadedImageAlgorithm.h"
00028 #include "gdcmTypes.h"
00029
00030 class GDCM_EXPORT vtkImageYBRToRGB : public vtkThreadedImageAlgorithm
00031 {
00032 public:
00033 static vtkImageYBRToRGB *New();
00034 vtkTypeRevisionMacro(vtkImageYBRToRGB,vtkThreadedImageAlgorithm);
00035
00036 void PrintSelf(ostream& os, vtkIndent indent);
00037
00038 protected:
00039 vtkImageYBRToRGB();
00040 ~vtkImageYBRToRGB() {};
00041
00042 void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
00043 int ext[6], int id);
00044 private:
00045 vtkImageYBRToRGB(const vtkImageYBRToRGB&);
00046 void operator=(const vtkImageYBRToRGB&);
00047 };
00048
00049 #endif
00050