VTK  9.2.6
vtkImageMapToWindowLevelColors.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkImageMapToWindowLevelColors.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=========================================================================*/
54#ifndef vtkImageMapToWindowLevelColors_h
55#define vtkImageMapToWindowLevelColors_h
56
57#include "vtkImageMapToColors.h"
58#include "vtkImagingColorModule.h" // For export macro
59
60class VTKIMAGINGCOLOR_EXPORT vtkImageMapToWindowLevelColors : public vtkImageMapToColors
61{
62public:
65 void PrintSelf(ostream& os, vtkIndent indent) override;
66
68
73 vtkSetMacro(Window, double);
74 vtkGetMacro(Window, double);
76
78
83 vtkSetMacro(Level, double);
84 vtkGetMacro(Level, double);
86
87protected:
90
93 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
94 int outExt[6], int id) override;
95 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
96 vtkInformationVector* outputVector) override;
97
98 double Window;
99 double Level;
100
101private:
103 void operator=(const vtkImageMapToWindowLevelColors&) = delete;
104};
105
106#endif
topologically and geometrically regular array of data
map the input image through a lookup table
Map an image through a lookup table and/or a window/level.
~vtkImageMapToWindowLevelColors() override
static vtkImageMapToWindowLevelColors * New()
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 RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called in response to a REQUEST_DATA request from the executive.
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.