VTK
dox
Imaging
Core
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
();
37
vtkTypeMacro(
vtkImagePermute
,
vtkImageReslice
);
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
:
52
vtkImagePermute
();
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
vtkImageReslice.h
vtkImageReslice::New
static vtkImageReslice * New()
vtkImageReslice::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkImagePermute::~vtkImagePermute
~vtkImagePermute() override
Definition:
vtkImagePermute.h:53
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:33
vtkImagePermute::SetFilteredAxes
void SetFilteredAxes(const int xyz[3])
Definition:
vtkImagePermute.h:46
vtkImageReslice
Reslices a volume along a new set of axes.
Definition:
vtkImageReslice.h:71
vtkImagePermute
Permutes axes of input.
Definition:
vtkImagePermute.h:33
Generated by
1.8.16