VTK  9.1.0
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=========================================================================*/
51#ifndef vtkImageMapToWindowLevelColors_h
52#define vtkImageMapToWindowLevelColors_h
53
54#include "vtkImageMapToColors.h"
55#include "vtkImagingColorModule.h" // For export macro
56
57class VTKIMAGINGCOLOR_EXPORT vtkImageMapToWindowLevelColors : public vtkImageMapToColors
58{
59public:
62 void PrintSelf(ostream& os, vtkIndent indent) override;
63
65
70 vtkSetMacro(Window, double);
71 vtkGetMacro(Window, double);
73
75
80 vtkSetMacro(Level, double);
81 vtkGetMacro(Level, double);
83
84protected:
87
90 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
91 int outExt[6], int id) override;
92 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
93 vtkInformationVector* outputVector) override;
94
95 double Window;
96 double Level;
97
98private:
100 void operator=(const vtkImageMapToWindowLevelColors&) = delete;
101};
102
103#endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:57
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 by the superclass.
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.