VTK  9.0.1
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
vtkResliceImageViewer::SetResliceMode
virtual void SetResliceMode(int resliceMode)
vtkPlane
perform various plane computations
Definition: vtkPlane.h:32
vtkImageViewer2.h
vtkBoundedPlanePointPlacer
a placer that constrains a handle to a finite plane
Definition: vtkBoundedPlanePointPlacer.h:38
vtkResliceImageViewer::SetResliceCursor
void SetResliceCursor(vtkResliceCursor *rc)
vtkResliceImageViewer::UpdateOrientation
void UpdateOrientation() override
vtkResliceImageViewer::SetColorLevel
void SetColorLevel(double s) override
vtkResliceImageViewer::ResliceCursorWidget
vtkResliceCursorWidget * ResliceCursorWidget
Definition: vtkResliceImageViewer.h:203
vtkResliceCursorWidget
represent a reslice cursor
Definition: vtkResliceCursorWidget.h:54
vtkResliceImageViewer::vtkResliceImageViewer
vtkResliceImageViewer()
vtkResliceImageViewer::ScrollCallback
vtkResliceImageViewerScrollCallback * ScrollCallback
Definition: vtkResliceImageViewer.h:208
vtkResliceCursor
Geometry for a reslice cursor.
Definition: vtkResliceCursor.h:44
vtkResliceImageViewer::SetInputData
void SetInputData(vtkImageData *in) override
Set/Get the input image to the viewer.
vtkImageViewer2
Display a 2D image.
Definition: vtkImageViewer2.h:76
vtkResliceImageViewer::IncrementSlice
virtual void IncrementSlice(int n)
Increment/Decrement slice by 'n' slices.
vtkResliceImageViewer::UpdatePointPlacer
virtual void UpdatePointPlacer()
vtkResliceImageViewer::Measurements
vtkResliceImageViewerMeasurements * Measurements
Definition: vtkResliceImageViewer.h:206
vtkResliceImageViewer::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkResliceImageViewer::~vtkResliceImageViewer
~vtkResliceImageViewer() override
vtkResliceImageViewer::GetReslicePlane
vtkPlane * GetReslicePlane()
Convenience methods to get the reslice plane and the normalized spacing between slices in reslice mod...
vtkResliceImageViewerMeasurements
Manage measurements on a resliced image.
Definition: vtkResliceImageViewerMeasurements.h:46
vtkResliceImageViewer::ResliceMode
int ResliceMode
Definition: vtkResliceImageViewer.h:205
vtkResliceImageViewer::SetResliceModeToAxisAligned
virtual void SetResliceModeToAxisAligned()
Definition: vtkResliceImageViewer.h:103
vtkResliceImageViewer::SetLookupTable
virtual void SetLookupTable(vtkScalarsToColors *)
Set the lookup table.
vtkResliceImageViewer::GetLookupTable
vtkScalarsToColors * GetLookupTable()
vtkResliceImageViewer::SliceScrollOnMouseWheel
vtkTypeBool SliceScrollOnMouseWheel
Definition: vtkResliceImageViewer.h:207
vtkResliceImageViewer::RESLICE_OBLIQUE
@ RESLICE_OBLIQUE
Definition: vtkResliceImageViewer.h:98
vtkResliceImageViewer::SetResliceModeToOblique
virtual void SetResliceModeToOblique()
Definition: vtkResliceImageViewer.h:107
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:42
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:34
vtkResliceImageViewer::SetInputConnection
void SetInputConnection(vtkAlgorithmOutput *input) override
vtkScalarsToColors
Superclass for mapping scalar values to colors.
Definition: vtkScalarsToColors.h:60
vtkResliceImageViewer::Render
void Render() override
Render the resulting image.
vtkRenderWindowInteractor
platform-independent render window interaction including picking and frame rate control.
Definition: vtkRenderWindowInteractor.h:83
vtkResliceImageViewer::PointPlacer
vtkBoundedPlanePointPlacer * PointPlacer
Definition: vtkResliceImageViewer.h:204
vtkResliceImageViewer::SetColorWindow
void SetColorWindow(double s) override
Set window and level for mapping pixels to colors.
vtkResliceImageViewer::RESLICE_AXIS_ALIGNED
@ RESLICE_AXIS_ALIGNED
Definition: vtkResliceImageViewer.h:97
vtkResliceImageViewer::GetInterSliceSpacingInResliceMode
double GetInterSliceSpacingInResliceMode()
vtkAlgorithmOutput
Proxy object to connect input/output ports.
Definition: vtkAlgorithmOutput.h:37
vtkResliceImageViewer::GetResliceCursor
vtkResliceCursor * GetResliceCursor()
Set/Get the reslice cursor.
vtkResliceImageViewer::New
static vtkResliceImageViewer * New()
Standard VTK methods.
vtkResliceImageViewer::SetThickMode
virtual void SetThickMode(int)
Switch to / from thick mode.
vtkResliceImageViewer::UpdateDisplayExtent
void UpdateDisplayExtent() override
Update the display extent manually so that the proper slice for the given orientation is displayed.
vtkResliceImageViewer
Display an image along with a reslice cursor.
Definition: vtkResliceImageViewer.h:51
vtkResliceImageViewer::InstallPipeline
void InstallPipeline() override
vtkResliceImageViewer::Reset
virtual void Reset()
Reset all views back to initial state.
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkResliceImageViewer::GetThickMode
virtual int GetThickMode()
vtkResliceImageViewer::UnInstallPipeline
void UnInstallPipeline() override