VTK  9.6.20260613
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
36
37#ifndef vtkImageHSVToRGB_h
38#define vtkImageHSVToRGB_h
39
40#include "vtkImagingColorModule.h" // For export macro
42
43VTK_ABI_NAMESPACE_BEGIN
44class VTKIMAGINGCOLOR_EXPORT vtkImageHSVToRGB : public vtkThreadedImageAlgorithm
45{
46public:
49
50 void PrintSelf(ostream& os, vtkIndent indent) override;
51
53
59 vtkSetMacro(Maximum, double);
60 vtkGetMacro(Maximum, double);
62
63protected:
65 ~vtkImageHSVToRGB() override = default;
66
67 double Maximum;
68
70 vtkImageData* inData, vtkImageData* outData, VTK_FUTURE_CONST int ext[6], int id) override;
71
72private:
73 vtkImageHSVToRGB(const vtkImageHSVToRGB&) = delete;
74 void operator=(const vtkImageHSVToRGB&) = delete;
75};
76
77VTK_ABI_NAMESPACE_END
78#endif
topologically and geometrically regular array of data
static vtkImageHSVToRGB * New()
~vtkImageHSVToRGB() override=default
void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, VTK_FUTURE_CONST int ext[6], int id) override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition vtkIndent.h:108