VTK
vtkImageHSIToRGB.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageHSIToRGB.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
29 #ifndef __vtkImageHSIToRGB_h
30 #define __vtkImageHSIToRGB_h
31 
33 
35 {
36 public:
37  static vtkImageHSIToRGB *New();
39 
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43 
47  vtkSetMacro(Maximum,double);
48  vtkGetMacro(Maximum,double);
50 
51 protected:
54 
55  double Maximum;
56 
57  void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
58  int ext[6], int id);
59 private:
60  vtkImageHSIToRGB(const vtkImageHSIToRGB&); // Not implemented.
61  void operator=(const vtkImageHSIToRGB&); // Not implemented.
62 };
63 
64 #endif
65 
66 
67