You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.8 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkImageRGBToHSI.h
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.
=========================================================================*/
/**
* @class vtkImageRGBToHSI
* @brief Converts RGB components to HSI.
*
* For each pixel with red, blue, and green components this
* filter output the color coded as hue, saturation and intensity.
* Output type must be the same as input type.
*/
#ifndef vtkImageRGBToHSI_h
#define vtkImageRGBToHSI_h
#include "vtkImagingColorModule.h" // For export macro
#include "vtkThreadedImageAlgorithm.h"
class VTKIMAGINGCOLOR_EXPORT vtkImageRGBToHSI : public vtkThreadedImageAlgorithm
{
public:
static vtkImageRGBToHSI* New();
vtkTypeMacro(vtkImageRGBToHSI, vtkThreadedImageAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent) override;
//@{
/**
* 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:
vtkImageRGBToHSI();
~vtkImageRGBToHSI() override {}
double Maximum;
void ThreadedExecute(vtkImageData* inData, vtkImageData* outData, int ext[6], int id) override;
private:
vtkImageRGBToHSI(const vtkImageRGBToHSI&) = delete;
void operator=(const vtkImageRGBToHSI&) = delete;
};
#endif