VTK
vtkImageSlabReslice.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageSlabReslice.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 =========================================================================*/
47 #ifndef vtkImageSlabReslice_h
48 #define vtkImageSlabReslice_h
49 
50 #include "vtkImagingGeneralModule.h" // For export macro
51 #include "vtkImageReslice.h"
52 
53 class VTKIMAGINGGENERAL_EXPORT vtkImageSlabReslice : public vtkImageReslice
54 {
55 public:
56 
57  static vtkImageSlabReslice *New();
59 
63  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
64 
66 
69  vtkSetMacro( BlendMode, int );
70  vtkGetMacro( BlendMode, int );
71  void SetBlendModeToMin() { this->SetBlendMode(VTK_IMAGE_SLAB_MIN ); }
72  void SetBlendModeToMax() { this->SetBlendMode(VTK_IMAGE_SLAB_MAX ); }
73  void SetBlendModeToMean() { this->SetBlendMode(VTK_IMAGE_SLAB_MEAN); }
75 
77 
82  vtkGetMacro( NumBlendSamplePoints, int );
84 
86 
90  vtkSetMacro( SlabThickness, double );
91  vtkGetMacro( SlabThickness, double );
93 
95 
99  vtkSetMacro( SlabResolution, double );
100  vtkGetMacro( SlabResolution, double );
102 
103 protected:
106 
114 
115  int BlendMode; // can be MIN, MIP, MAX
119 
120 private:
121  vtkImageSlabReslice(const vtkImageSlabReslice&) VTK_DELETE_FUNCTION;
122  void operator=(const vtkImageSlabReslice&) VTK_DELETE_FUNCTION;
123 };
124 
125 #endif
#define VTK_IMAGE_SLAB_MAX
#define VTK_IMAGE_SLAB_MIN
Thick slab reformat through data.
Store vtkAlgorithm input/output information.
#define VTK_IMAGE_SLAB_MEAN
void SetBlendModeToMean()
Set/Get the blend mode.
static vtkImageReslice * New()
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Reslices a volume along a new set of axes.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Store zero or more vtkInformation instances.
void SetBlendModeToMax()
Set/Get the blend mode.
void SetBlendModeToMin()
Set/Get the blend mode.