VTK  9.3.0
vtkImageHSVToRGB.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
27#ifndef vtkImageHSVToRGB_h
28#define vtkImageHSVToRGB_h
29
30#include "vtkImagingColorModule.h" // For export macro
32
33VTK_ABI_NAMESPACE_BEGIN
34class VTKIMAGINGCOLOR_EXPORT vtkImageHSVToRGB : public vtkThreadedImageAlgorithm
35{
36public:
39
40 void PrintSelf(ostream& os, vtkIndent indent) override;
41
43
49 vtkSetMacro(Maximum, double);
50 vtkGetMacro(Maximum, double);
52
53protected:
55 ~vtkImageHSVToRGB() override = default;
56
57 double Maximum;
58
59 void ThreadedExecute(vtkImageData* inData, vtkImageData* outData, int ext[6], int id) override;
60
61private:
62 vtkImageHSVToRGB(const vtkImageHSVToRGB&) = delete;
63 void operator=(const vtkImageHSVToRGB&) = delete;
64};
65
66VTK_ABI_NAMESPACE_END
67#endif
topologically and geometrically regular array of data
Converts HSV components to RGB.
static vtkImageHSVToRGB * New()
~vtkImageHSVToRGB() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, int ext[6], int id) override
a simple class to control print indentation
Definition vtkIndent.h:38
Generic filter that has one input.