Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

59 lines
1.8 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkImageRGBToHSV.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkImageRGBToHSV - Converts RGB components to HSV.
// .SECTION Description
// For each pixel with red, blue, and green components this
// filter output the color coded as hue, saturation and value.
// Output type must be the same as input type.
#ifndef __vtkImageRGBToHSV_h
#define __vtkImageRGBToHSV_h
#include "vtkThreadedImageAlgorithm.h"
class VTK_IMAGING_EXPORT vtkImageRGBToHSV : public vtkThreadedImageAlgorithm
{
public:
static vtkImageRGBToHSV *New();
vtkTypeRevisionMacro(vtkImageRGBToHSV,vtkThreadedImageAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Hue is an angle. Maximum specifies when it maps back to 0. HueMaximum
// defaults to 255 instead of 2PI, because unsigned char is expected as
// input. Maximum also specifies the maximum of the Saturation.
vtkSetMacro(Maximum,double);
vtkGetMacro(Maximum,double);
protected:
vtkImageRGBToHSV();
~vtkImageRGBToHSV() {};
double Maximum;
void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
int ext[6], int id);
private:
vtkImageRGBToHSV(const vtkImageRGBToHSV&); // Not implemented.
void operator=(const vtkImageRGBToHSV&); // Not implemented.
};
#endif