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 =========================================================================*/
84 #ifndef vtkImageMapToWindowLevelColors_h
85 #define vtkImageMapToWindowLevelColors_h
86 
87 #include "vtkImageMapToColors.h"
88 #include "vtkImagingColorModule.h" // For export macro
89 
90 class VTKIMAGINGCOLOR_EXPORT vtkImageMapToWindowLevelColors : public vtkImageMapToColors
91 {
92 public:
95  void PrintSelf(ostream& os, vtkIndent indent) override;
96 
98 
103  vtkSetMacro(Window, double);
104  vtkGetMacro(Window, double);
106 
108 
113  vtkSetMacro(Level, double);
114  vtkGetMacro(Level, double);
116 
117 protected:
120 
123  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
124  int outExt[6], int id) override;
125  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
126  vtkInformationVector* outputVector) override;
127 
128  double Window;
129  double Level;
130 
131 private:
133  void operator=(const vtkImageMapToWindowLevelColors&) = delete;
134 };
135 
136 #endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:163
map the input image through a lookup table
Map an image through a lookup table and/or a window/level.
~vtkImageMapToWindowLevelColors() 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 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.
static vtkImageMapToWindowLevelColors * New()
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.