VTK  9.2.6
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 =========================================================================*/
29 #ifndef vtkImagePermute_h
30 #define vtkImagePermute_h
31 
32 #include "vtkImageReslice.h"
33 #include "vtkImagingCoreModule.h" // For export macro
34 
35 class VTKIMAGINGCORE_EXPORT vtkImagePermute : public vtkImageReslice
36 {
37 public:
38  static vtkImagePermute* New();
40 
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
44 
47  void SetFilteredAxes(int x, int y, int z);
48  void SetFilteredAxes(const int xyz[3]) { this->SetFilteredAxes(xyz[0], xyz[1], xyz[2]); }
49  vtkGetVector3Macro(FilteredAxes, int);
51 
52 protected:
54  ~vtkImagePermute() override = default;
55 
56  int FilteredAxes[3];
57 
58 private:
59  vtkImagePermute(const vtkImagePermute&) = delete;
60  void operator=(const vtkImagePermute&) = delete;
61 };
62 
63 #endif
void SetFilteredAxes(const int xyz[3])
The filtered axes are the input axes that get relabeled to X,Y,Z.
static vtkImageReslice * New()
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.
Permutes axes of input.
Reslices a volume along a new set of axes.