VTK  9.0.3
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 
43 class vtkResliceCursor;
44 class vtkScalarsToColors;
47 class vtkResliceImageViewerScrollCallback;
48 class vtkPlane;
49 
50 class VTKINTERACTIONIMAGE_EXPORT vtkResliceImageViewer : public vtkImageViewer2
51 {
52 public:
54 
59  void PrintSelf(ostream& os, vtkIndent indent) override;
61 
65  void Render() override;
66 
68 
71  void SetInputData(vtkImageData* in) override;
72  void SetInputConnection(vtkAlgorithmOutput* input) 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  {
105  this->SetResliceMode(vtkResliceImageViewer::RESLICE_AXIS_ALIGNED);
106  }
107  virtual void SetResliceModeToOblique()
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 n);
178 
179  enum
180  {
181  SliceChangedEvent = 1001
182  };
183 
184 protected:
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 
210 private:
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:42
Display a 2D image.
a simple class to control print indentation
Definition: vtkIndent.h:34
perform various plane computations
Definition: vtkPlane.h:32
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.
vtkResliceCursorWidget * ResliceCursorWidget
void SetInputData(vtkImageData *in) override
Set/Get the input image to the viewer.
virtual void SetResliceModeToAxisAligned()
virtual int GetThickMode()
static vtkResliceImageViewer * New()
Standard VTK methods.
virtual void SetResliceModeToOblique()
void Render() override
Render the resulting image.
void SetColorLevel(double s) override
vtkResliceImageViewerScrollCallback * ScrollCallback
vtkPlane * GetReslicePlane()
Convenience methods to get the reslice plane and the normalized spacing between slices in reslice mod...
vtkBoundedPlanePointPlacer * PointPlacer
~vtkResliceImageViewer() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
double GetInterSliceSpacingInResliceMode()
virtual void Reset()
Reset all views back to initial state.
void SetResliceCursor(vtkResliceCursor *rc)
void UpdateDisplayExtent() override
Update the display extent manually so that the proper slice for the given orientation is displayed.
vtkResliceCursor * GetResliceCursor()
Set/Get the reslice cursor.
virtual void SetLookupTable(vtkScalarsToColors *)
Set the lookup table.
void UnInstallPipeline() override
void SetInputConnection(vtkAlgorithmOutput *input) override
virtual void UpdatePointPlacer()
vtkScalarsToColors * GetLookupTable()
vtkResliceImageViewerMeasurements * Measurements
void InstallPipeline() override
virtual void SetThickMode(int)
Switch to / from thick mode.
virtual void SetResliceMode(int resliceMode)
virtual void IncrementSlice(int n)
Increment/Decrement slice by 'n' slices.
Superclass for mapping scalar values to colors.
int vtkTypeBool
Definition: vtkABI.h:69