Imaging/vtkImageRGBToHSV.h
Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00026 #ifndef __vtkImageRGBToHSV_h
00027 #define __vtkImageRGBToHSV_h
00028 
00029 
00030 #include "vtkImageToImageFilter.h"
00031 
00032 class VTK_IMAGING_EXPORT vtkImageRGBToHSV : public vtkImageToImageFilter
00033 {
00034 public:
00035   static vtkImageRGBToHSV *New();
00036   vtkTypeRevisionMacro(vtkImageRGBToHSV,vtkImageToImageFilter);
00037   void PrintSelf(ostream& os, vtkIndent indent);
00038 
00039 
00040   
00041   
00042   
00043   vtkSetMacro(Maximum,double);
00044   vtkGetMacro(Maximum,double);
00045   
00046 protected:
00047   vtkImageRGBToHSV();
00048   ~vtkImageRGBToHSV() {};
00049 
00050   double Maximum;
00051   
00052   void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00053                        int ext[6], int id);
00054 private:
00055   vtkImageRGBToHSV(const vtkImageRGBToHSV&);  
00056   void operator=(const vtkImageRGBToHSV&);  
00057 };
00058 
00059 #endif
00060 
00061 
00062