VTK  9.1.0
vtkResliceImageViewer.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkResliceImageViewer.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=========================================================================*/
36#ifndef vtkResliceImageViewer_h
37#define vtkResliceImageViewer_h
38
39#include "vtkImageViewer2.h"
40#include "vtkInteractionImageModule.h" // For export macro
41
47class vtkResliceImageViewerScrollCallback;
48class vtkPlane;
49
50class VTKINTERACTIONIMAGE_EXPORT vtkResliceImageViewer : public vtkImageViewer2
51{
52public:
54
59 void PrintSelf(ostream& os, vtkIndent indent) override;
61
65 void Render() override;
66
68
71 void SetInputData(vtkImageData* in) override;
74
76
79 void SetColorWindow(double s) override;
80 void SetColorLevel(double s) override;
82
84
88 vtkGetObjectMacro(ResliceCursorWidget, vtkResliceCursorWidget);
90
95 enum
96 {
97 RESLICE_AXIS_ALIGNED = 0,
98 RESLICE_OBLIQUE = 1
99 };
100
101 vtkGetMacro(ResliceMode, int);
102 virtual void SetResliceMode(int resliceMode);
104 {
106 }
108 {
109 this->SetResliceMode(vtkResliceImageViewer::RESLICE_OBLIQUE);
110 }
111
113
119
121
127
129
132 virtual void SetThickMode(int);
133 virtual int GetThickMode();
135
139 virtual void Reset();
140
142
145 vtkGetObjectMacro(PointPlacer, vtkBoundedPlanePointPlacer);
147
149
152 vtkGetObjectMacro(Measurements, vtkResliceImageViewerMeasurements);
154
156
159 vtkGetObjectMacro(Interactor, vtkRenderWindowInteractor);
161
163
169 vtkSetMacro(SliceScrollOnMouseWheel, vtkTypeBool);
170 vtkGetMacro(SliceScrollOnMouseWheel, vtkTypeBool);
171 vtkBooleanMacro(SliceScrollOnMouseWheel, vtkTypeBool);
173
177 virtual void IncrementSlice(int inc);
178
179 enum
180 {
181 SliceChangedEvent = 1001
182 };
183
184protected:
187
188 void InstallPipeline() override;
189 void UnInstallPipeline() override;
190 void UpdateOrientation() override;
191 void UpdateDisplayExtent() override;
192 virtual void UpdatePointPlacer();
193
195
202
208 vtkResliceImageViewerScrollCallback* ScrollCallback;
209
210private:
212 void operator=(const vtkResliceImageViewer&) = delete;
213};
214
215#endif
Proxy object to connect input/output ports.
a placer that constrains a handle to a finite plane
topologically and geometrically regular array of data
Definition: vtkImageData.h:157
Display a 2D image.
a simple class to control print indentation
Definition: vtkIndent.h:113
perform various plane computations
Definition: vtkPlane.h:143
platform-independent render window interaction including picking and frame rate control.
represent a reslice cursor
Geometry for a reslice cursor.
Manage measurements on a resliced image.
Display an image along with a reslice cursor.
void UpdateOrientation() override
void SetColorWindow(double s) override
Set window and level for mapping pixels to colors.
static vtkResliceImageViewer * New()
Standard VTK methods.
vtkResliceCursorWidget * ResliceCursorWidget
void SetInputData(vtkImageData *in) override
Set/Get the input image to the viewer.
virtual void SetResliceModeToAxisAligned()
virtual int GetThickMode()
Switch to / from thick mode.
virtual void SetResliceModeToOblique()
void Render() override
Render the resulting image.
void SetColorLevel(double s) override
Set window and level for mapping pixels to colors.
vtkPlane * GetReslicePlane()
Convenience methods to get the reslice plane and the normalized spacing between slices in reslice mod...
vtkResliceImageViewerScrollCallback * ScrollCallback
vtkBoundedPlanePointPlacer * PointPlacer
~vtkResliceImageViewer() override
void PrintSelf(ostream &os, vtkIndent indent) override
Standard VTK methods.
double GetInterSliceSpacingInResliceMode()
Convenience methods to get the reslice plane and the normalized spacing between slices in reslice mod...
virtual void Reset()
Reset all views back to initial state.
void SetResliceCursor(vtkResliceCursor *rc)
Set/Get the reslice cursor.
void UpdateDisplayExtent() override
Update the display extent manually so that the proper slice for the given orientation is displayed.
vtkScalarsToColors * GetLookupTable()
Set the lookup table.
virtual void IncrementSlice(int inc)
Increment/Decrement slice by 'inc' slices.
virtual void SetLookupTable(vtkScalarsToColors *)
Set the lookup table.
void UnInstallPipeline() override
void SetInputConnection(vtkAlgorithmOutput *input) override
Set/Get the input image to the viewer.
vtkResliceCursor * GetResliceCursor()
Set/Get the reslice cursor.
virtual void UpdatePointPlacer()
vtkResliceImageViewerMeasurements * Measurements
void InstallPipeline() override
virtual void SetThickMode(int)
Switch to / from thick mode.
virtual void SetResliceMode(int resliceMode)
Superclass for mapping scalar values to colors.
int vtkTypeBool
Definition: vtkABI.h:69