VTK  9.2.5
vtkImageQuantizeRGBToIndex.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageQuantizeRGBToIndex.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 =========================================================================*/
65 #ifndef vtkImageQuantizeRGBToIndex_h
66 #define vtkImageQuantizeRGBToIndex_h
67 
68 #include "vtkImageAlgorithm.h"
69 #include "vtkImagingColorModule.h" // For export macro
70 
71 class vtkLookupTable;
72 
73 class VTKIMAGINGCOLOR_EXPORT vtkImageQuantizeRGBToIndex : public vtkImageAlgorithm
74 {
75 public:
78  void PrintSelf(ostream& os, vtkIndent indent) override;
79 
81 
85  vtkSetClampMacro(NumberOfColors, int, 2, 65536);
86  vtkGetMacro(NumberOfColors, int);
88 
89  vtkSetVector3Macro(SamplingRate, int);
90  vtkGetVector3Macro(SamplingRate, int);
91 
92  vtkSetMacro(SortIndexByLuminance, bool);
93  vtkGetMacro(SortIndexByLuminance, bool);
94  vtkBooleanMacro(SortIndexByLuminance, bool);
95 
97 
101  vtkGetObjectMacro(LookupTable, vtkLookupTable);
103 
104  vtkGetMacro(InitializeExecuteTime, double);
105  vtkGetMacro(BuildTreeExecuteTime, double);
106  vtkGetMacro(LookupIndexExecuteTime, double);
107 
109 
112  vtkGetMacro(InputType, int);
114 
116 
119  vtkSetMacro(InitializeExecuteTime, double);
120  vtkSetMacro(BuildTreeExecuteTime, double);
121  vtkSetMacro(LookupIndexExecuteTime, double);
123 
124 protected:
127 
131  int SamplingRate[3];
133 
137 
140 
142 
143 private:
145  void operator=(const vtkImageQuantizeRGBToIndex&) = delete;
146 };
147 
148 #endif
Generic algorithm superclass for image algs.
generalized histograms up to 4 dimensions
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkImageQuantizeRGBToIndex * New()
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to translate the update extent requests from each output port ...
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called in response to a REQUEST_DATA request from the executive.
~vtkImageQuantizeRGBToIndex() override
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
map scalar values into colors via a lookup table