dox/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
00030
#ifndef __vtkImageRGBToHSV_h
00031
#define __vtkImageRGBToHSV_h
00032
00033
00034
#include "vtkImageToImageFilter.h"
00035
00036 class VTK_IMAGING_EXPORT vtkImageRGBToHSV :
public vtkImageToImageFilter
00037 {
00038
public:
00039
static vtkImageRGBToHSV *
New();
00040 vtkTypeRevisionMacro(vtkImageRGBToHSV,
vtkImageToImageFilter);
00041
void PrintSelf(ostream& os,
vtkIndent indent);
00042
00043
00044
00045
00046
00047 vtkSetMacro(Maximum,
float);
00048 vtkGetMacro(Maximum,
float);
00049
00050
protected:
00051 vtkImageRGBToHSV();
00052 ~vtkImageRGBToHSV() {};
00053
00054 float Maximum;
00055
00056
void ThreadedExecute(
vtkImageData *inData,
vtkImageData *outData,
00057
int ext[6],
int id);
00058
private:
00059 vtkImageRGBToHSV(
const vtkImageRGBToHSV&);
00060
void operator=(
const vtkImageRGBToHSV&);
00061 };
00062
00063
#endif
00064
00065
00066