VTK  9.6.1
vtkImageMapper3D.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
19
20#ifndef vtkImageMapper3D_h
21#define vtkImageMapper3D_h
22
23#include "vtkAbstractMapper3D.h"
24#include "vtkRenderingCoreModule.h" // For export macro
25#include "vtkThreads.h" // for VTK_MAX_THREADS
26#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
27
28VTK_ABI_NAMESPACE_BEGIN
29class vtkRenderer;
30class vtkProp3D;
31class vtkPoints;
32class vtkMatrix4x4;
33class vtkLookupTable;
35class vtkImageSlice;
37class vtkImageData;
39class vtkImageToImageMapper3DFriendship;
40
41class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkImageMapper3D : public vtkAbstractMapper3D
42{
43public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
50 virtual void Render(vtkRenderer* renderer, vtkImageSlice* prop) = 0;
51
58
60
68
70
76 vtkSetMacro(Border, vtkTypeBool);
77 vtkBooleanMacro(Border, vtkTypeBool);
78 vtkGetMacro(Border, vtkTypeBool);
80
82
88 vtkSetMacro(Background, vtkTypeBool);
89 vtkBooleanMacro(Background, vtkTypeBool);
90 vtkGetMacro(Background, vtkTypeBool);
92
94
103
105
111 vtkBooleanMacro(SliceFacesCamera, vtkTypeBool);
114
116
123 vtkGetObjectMacro(SlicePlane, vtkPlane);
125
131 virtual void GetSlicePlaneInDataCoords(vtkMatrix4x4* propMatrix, double plane[4]);
132
134
137 vtkSetClampMacro(NumberOfThreads, int, 1, VTK_MAX_THREADS);
138 vtkGetMacro(NumberOfThreads, int);
140
142
151 vtkSetMacro(Streaming, vtkTypeBool);
152 vtkGetMacro(Streaming, vtkTypeBool);
153 vtkBooleanMacro(Streaming, vtkTypeBool);
155
156 // return the bounds in index space
157 virtual void GetIndexBounds(double extent[6]) = 0;
158
159protected:
162
164
167 int FillInputPortInformation(int port, vtkInformation* info) override;
168 int FillOutputPortInformation(int port, vtkInformation* info) override;
170
175 vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo) override;
176
181 static void CheckerboardRGBA(unsigned char* data, int xsize, int ysize, double originx,
182 double originy, double spacingx, double spacingy);
183
200 unsigned char* MakeTextureData(vtkImageProperty* property, vtkImageData* input, int extent[6],
201 int& xsize, int& ysize, int& bytesPerPixel, bool& reuseTexture, bool& reuseData);
202
207 void MakeTextureGeometry(const int extent[6], double coords[12], double tcoords[8]);
208
216 virtual void ComputeTextureSize(
217 const int extent[6], int& xdim, int& ydim, int imageSize[2], int textureSize[2]);
218
224
228 vtkImageSlice* GetCurrentProp() { return this->CurrentProp; }
229
235
240 void GetBackgroundColor(vtkImageProperty* property, double color[4]);
241
248
249 // The slice.
253
254 // Information about the image, updated by UpdateInformation
255 double DataSpacing[3];
256 double DataOrigin[3];
257 double DataDirection[9];
259
260 // Set by vtkImageStack when doing multi-pass rendering
264
265private:
266 // The prop this mapper is attached to, or zero if none.
267 vtkImageSlice* CurrentProp;
268 vtkRenderer* CurrentRenderer;
269
270 // The cached data-to-world matrix
271 vtkMatrix4x4* DataToWorldMatrix;
272
273 vtkImageMapper3D(const vtkImageMapper3D&) = delete;
274 void operator=(const vtkImageMapper3D&) = delete;
275
277};
278
279VTK_ABI_NAMESPACE_END
280#endif
general representation of visualization data
abstract class to specify dataset behavior
Definition vtkDataSet.h:57
topologically and geometrically regular array of data
virtual void GetSlicePlaneInDataCoords(vtkMatrix4x4 *propMatrix, double plane[4])
Get the plane as a homogeneous 4-vector that gives the plane equation coefficients.
virtual void ComputeTextureSize(const int extent[6], int &xdim, int &ydim, int imageSize[2], int textureSize[2])
Given an extent that describes a slice (it must have unit thickness in one of the three directions),...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
friend class vtkImageToImageMapper3DFriendship
vtkDataSet * GetDataSetInput()
The input data for this mapper.
static void CheckerboardRGBA(unsigned char *data, int xsize, int ysize, double originx, double originy, double spacingx, double spacingy)
Checkerboard the alpha component of an RGBA image.
vtkScalarsToColors * DefaultLookupTable
vtkMultiThreader * Threader
vtkImageData * GetInput()
The input data for this mapper.
vtkImageSlice * GetCurrentProp()
Get the vtkImage prop associated with this mapper, or zero if none.
unsigned char * MakeTextureData(vtkImageProperty *property, vtkImageData *input, int extent[6], int &xsize, int &ysize, int &bytesPerPixel, bool &reuseTexture, bool &reuseData)
Perform window/level and color mapping operations to produce unsigned char data that can be used as a...
int FillOutputPortInformation(int port, vtkInformation *info) override
See algorithm for more info.
vtkTypeBool SliceFacesCamera
void GetBackgroundColor(vtkImageProperty *property, double color[4])
Get the background color, by using the first color in the supplied lookup table, or black if there is...
vtkDataObject * GetDataObjectInput()
The input data for this mapper.
virtual void Render(vtkRenderer *renderer, vtkImageSlice *prop)=0
This should only be called by the renderer.
vtkRenderer * GetCurrentRenderer()
Get the renderer associated with this mapper, or zero if none.
virtual void GetIndexBounds(double extent[6])=0
void ReleaseGraphicsResources(vtkWindow *) override=0
Release any graphics resources that are being consumed by this mapper.
void MakeTextureGeometry(const int extent[6], double coords[12], double tcoords[8])
Compute the coordinates and texture coordinates for the image, given an extent that describes a singl...
~vtkImageMapper3D() override
void SetInputData(vtkImageData *input)
The input data for this mapper.
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo) override
Handle requests from the pipeline executive.
int FillInputPortInformation(int port, vtkInformation *info) override
See algorithm for more info.
vtkTypeBool SliceAtFocalPoint
vtkMatrix4x4 * GetDataToWorldMatrix()
Get the data-to-world matrix for this mapper, according to the assembly path for its prop.
image display properties
represents an image in a 3D scene
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
map scalar values into colors via a lookup table
represent and manipulate 4x4 transformation matrices
A class for performing multithreaded execution.
perform various plane computations
Definition vtkPlane.h:32
represent and manipulate 3D points
Definition vtkPoints.h:30
represents an 3D object for placement in a rendered scene
Definition vtkProp3D.h:40
abstract specification for renderers
Definition vtkRenderer.h:64
Superclass for mapping scalar values to colors.
window superclass for vtkRenderWindow
Definition vtkWindow.h:29
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO