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