VTK  9.2.6
vtkImageMapToColors.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkImageMapToColors.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=========================================================================*/
44#ifndef vtkImageMapToColors_h
45#define vtkImageMapToColors_h
46
47#include "vtkImagingCoreModule.h" // For export macro
49
51
52class VTKIMAGINGCORE_EXPORT vtkImageMapToColors : public vtkThreadedImageAlgorithm
53{
54public:
57 void PrintSelf(ostream& os, vtkIndent indent) override;
58
60
64 vtkGetObjectMacro(LookupTable, vtkScalarsToColors);
66
68
71 vtkSetMacro(OutputFormat, int);
72 vtkGetMacro(OutputFormat, int);
73 void SetOutputFormatToRGBA() { this->OutputFormat = VTK_RGBA; }
74 void SetOutputFormatToRGB() { this->OutputFormat = VTK_RGB; }
76 void SetOutputFormatToLuminance() { this->OutputFormat = VTK_LUMINANCE; }
78
80
83 vtkSetMacro(ActiveComponent, int);
84 vtkGetMacro(ActiveComponent, int);
86
88
92 vtkSetMacro(PassAlphaToOutput, vtkTypeBool);
93 vtkBooleanMacro(PassAlphaToOutput, vtkTypeBool);
94 vtkGetMacro(PassAlphaToOutput, vtkTypeBool);
96
101
103
107 vtkSetVector4Macro(NaNColor, unsigned char);
108 vtkGetVector4Macro(NaNColor, unsigned char);
110
111protected:
114
116
118 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
119 int outExt[6], int id) override;
120
122 vtkInformationVector* outputVector) override;
123
126
129
131
132 unsigned char NaNColor[4];
133
134private:
136 void operator=(const vtkImageMapToColors&) = delete;
137};
138
139#endif
topologically and geometrically regular array of data
map the input image through a lookup table
void SetOutputFormatToLuminance()
Set the output format, the default is RGBA.
vtkScalarsToColors * LookupTable
~vtkImageMapToColors() override
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int id) override
If the subclass does not define an Execute method, then the task will be broken up,...
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called in response to a REQUEST_DATA request from the executive.
vtkMTimeType GetMTime() override
We need to check the modified time of the lookup table too.
void SetOutputFormatToRGB()
Set the output format, the default is RGBA.
static vtkImageMapToColors * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetLookupTable(vtkScalarsToColors *)
Set the lookup table.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
void SetOutputFormatToRGBA()
Set the output format, the default is RGBA.
void SetOutputFormatToLuminanceAlpha()
Set the output format, the default is RGBA.
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for mapping scalar values to colors.
Generic filter that has one input.
int vtkTypeBool
Definition vtkABI.h:69
#define VTK_LUMINANCE_ALPHA
#define VTK_RGBA
#define VTK_RGB
#define VTK_LUMINANCE
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287