VTK
vtkImagePermute.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImagePermute.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 =========================================================================*/
26 #ifndef vtkImagePermute_h
27 #define vtkImagePermute_h
28 
29 
30 #include "vtkImagingCoreModule.h" // For export macro
31 #include "vtkImageReslice.h"
32 
33 class VTKIMAGINGCORE_EXPORT vtkImagePermute : public vtkImageReslice
34 {
35 public:
36  static vtkImagePermute *New();
38 
39  void PrintSelf(ostream& os, vtkIndent indent) override;
40 
42 
45  void SetFilteredAxes(int x, int y, int z);
46  void SetFilteredAxes(const int xyz[3]) {
47  this->SetFilteredAxes(xyz[0], xyz[1], xyz[2]); };
48  vtkGetVector3Macro(FilteredAxes, int);
50 
51 protected:
53  ~vtkImagePermute() override {}
54 
55  int FilteredAxes[3];
56 
57 private:
58  vtkImagePermute(const vtkImagePermute&) = delete;
59  void operator=(const vtkImagePermute&) = delete;
60 };
61 
62 #endif
63 
64 
65 
void SetFilteredAxes(const int xyz[3])
The filtered axes are the input axes that get relabeled to X,Y,Z.
~vtkImagePermute() override
static vtkImageReslice * New()
a simple class to control print indentation
Definition: vtkIndent.h:33
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Permutes axes of input.
Reslices a volume along a new set of axes.