VTK
vtkImageStack.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageStack.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 =========================================================================*/
34 #ifndef vtkImageStack_h
35 #define vtkImageStack_h
36 
37 #include "vtkRenderingImageModule.h" // For export macro
38 #include "vtkImageSlice.h"
39 
41 class vtkImageProperty;
42 class vtkImageMapper3D;
43 class vtkCollection;
44 
46 {
47 public:
49  void PrintSelf(ostream& os, vtkIndent indent);
50  static vtkImageStack *New();
51 
54  void AddImage(vtkImageSlice *prop);
55 
58  void RemoveImage(vtkImageSlice *prop);
59 
61  int HasImage(vtkImageSlice *prop);
62 
64  vtkImageSliceCollection *GetImages() { return this->Images; }
65 
67 
69  vtkSetMacro(ActiveLayer, int);
70  int GetActiveLayer() { return this->ActiveLayer; }
72 
76  vtkImageSlice *GetActiveImage();
77 
80 
83 
85 
86  double *GetBounds();
87  void GetBounds(double bounds[6]) { this->vtkProp3D::GetBounds( bounds ); };
89 
91  unsigned long int GetMTime();
92 
97  unsigned long GetRedrawMTime();
98 
100  void ShallowCopy(vtkProp *prop);
101 
106 
108 
109  virtual int RenderOverlay(vtkViewport *viewport);
110  virtual int RenderOpaqueGeometry(vtkViewport *viewport);
111  virtual int RenderTranslucentPolygonalGeometry(vtkViewport *viewport);
113 
115  virtual int HasTranslucentPolygonalGeometry();
116 
119 
121 
123  void InitPathTraversal();
125  int GetNumberOfPaths();
127 
131  void BuildPaths(vtkAssemblyPaths *paths, vtkAssemblyPath *path);
132 
133 protected:
134  vtkImageStack();
135  ~vtkImageStack();
136 
137  void SetMapper(vtkImageMapper3D *mapper);
138  void SetProperty(vtkImageProperty *property);
139 
140  void PokeMatrices(vtkMatrix4x4 *matrix);
141  void UpdatePaths();
142 
147 
148 private:
149  vtkImageStack(const vtkImageStack&); // Not implemented.
150  void operator=(const vtkImageStack&); // Not implemented.
151 };
152 
153 #endif
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:52
vtkImageSliceCollection * Images
void GetBounds(double bounds[6])
Definition: vtkImageStack.h:87
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:38
a sorted list of image slice objects
abstract specification for Viewports
Definition: vtkViewport.h:46
virtual void BuildPaths(vtkAssemblyPaths *paths, vtkAssemblyPath *path)
record modification and/or execution time
Definition: vtkTimeStamp.h:34
image display properties
virtual vtkImageProperty * GetProperty()
virtual vtkAssemblyPath * GetNextPath()
void InitPathTraversal()
a list of Props
window superclass for vtkRenderWindow
Definition: vtkWindow.h:36
vtkImageSliceCollection * GetImages()
Definition: vtkImageStack.h:64
#define VTKRENDERINGIMAGE_EXPORT
a list of nodes that form an assembly path
void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:38
abstract class for mapping images to the screen
virtual int HasTranslucentPolygonalGeometry()
void SetProperty(vtkImageProperty *property)
void GetImages(vtkPropCollection *)
void SetMapper(vtkImageMapper3D *mapper)
a list of lists of props representing an assembly hierarchy
vtkTimeStamp PathTime
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:52
int GetActiveLayer()
Definition: vtkImageStack.h:70
represents an image in a 3D scene
Definition: vtkImageSlice.h:51
unsigned long GetRedrawMTime()
void ShallowCopy(vtkProp *prop)
virtual int RenderOverlay(vtkViewport *viewport)
static vtkImageSlice * New()
void ReleaseGraphicsResources(vtkWindow *win)
virtual double * GetBounds()=0
virtual int GetNumberOfPaths()
Definition: vtkProp.h:141
virtual int RenderTranslucentPolygonalGeometry(vtkViewport *viewport)
virtual int RenderOpaqueGeometry(vtkViewport *viewport)
vtkCollection * ImageMatrices
virtual vtkImageMapper3D * GetMapper()
double * GetBounds()
unsigned long int GetMTime()
manages a stack of composited images
Definition: vtkImageStack.h:45