Imaging/vtkImageRGBToHSV.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00042 #ifndef __vtkImageRGBToHSV_h
00043 #define __vtkImageRGBToHSV_h
00044
00045
00046 #include "vtkImageToImageFilter.h"
00047
00048 class VTK_IMAGING_EXPORT vtkImageRGBToHSV : public vtkImageToImageFilter
00049 {
00050 public:
00051 static vtkImageRGBToHSV *New();
00052 vtkTypeRevisionMacro(vtkImageRGBToHSV,vtkImageToImageFilter);
00053 void PrintSelf(ostream& os, vtkIndent indent);
00054
00055
00056
00057
00058
00059 vtkSetMacro(Maximum,float);
00060 vtkGetMacro(Maximum,float);
00061
00062 protected:
00063 vtkImageRGBToHSV();
00064 ~vtkImageRGBToHSV() {};
00065
00066 float Maximum;
00067
00068 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00069 int ext[6], int id);
00070 private:
00071 vtkImageRGBToHSV(const vtkImageRGBToHSV&);
00072 void operator=(const vtkImageRGBToHSV&);
00073 };
00074
00075 #endif
00076
00077
00078