VTK  9.2.5
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 "vtkImageReslice.h"
51#include "vtkImagingGeneralModule.h" // For export macro
52
53class VTKIMAGINGGENERAL_EXPORT vtkImageSlabReslice : public vtkImageReslice
54{
55public:
58
62 void PrintSelf(ostream& os, vtkIndent indent) override;
63
65
68 vtkSetMacro(BlendMode, int);
69 vtkGetMacro(BlendMode, int);
70 void SetBlendModeToMin() { this->SetBlendMode(VTK_IMAGE_SLAB_MIN); }
71 void SetBlendModeToMax() { this->SetBlendMode(VTK_IMAGE_SLAB_MAX); }
72 void SetBlendModeToMean() { this->SetBlendMode(VTK_IMAGE_SLAB_MEAN); }
74
76
81 vtkGetMacro(NumBlendSamplePoints, int);
83
85
89 vtkSetMacro(SlabThickness, double);
90 vtkGetMacro(SlabThickness, double);
92
94
98 vtkSetMacro(SlabResolution, double);
99 vtkGetMacro(SlabResolution, double);
101
102protected:
105
112
113 int BlendMode; // can be MIN, MIP, MAX
117
118private:
120 void operator=(const vtkImageSlabReslice&) = delete;
121};
122
123#endif
Reslices a volume along a new set of axes.
Thick slab reformat through data.
void PrintSelf(ostream &os, vtkIndent indent) override
Printself method.
static vtkImageSlabReslice * New()
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This method simply calls the superclass method.
~vtkImageSlabReslice() override
void SetBlendModeToMin()
Set/Get the blend mode.
void SetBlendModeToMean()
Set/Get the blend mode.
void SetBlendModeToMax()
Set/Get the blend mode.
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
#define VTK_IMAGE_SLAB_MAX
#define VTK_IMAGE_SLAB_MIN
#define VTK_IMAGE_SLAB_MEAN