VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filtering
vtkImageToStructuredPoints.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkImageToStructuredPoints.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 __vtkImageToStructuredPoints_h
30
#define __vtkImageToStructuredPoints_h
31
32
#include "
vtkImageAlgorithm.h
"
33
34
class
vtkImageData
;
35
class
vtkStructuredPoints
;
36
37
class
VTK_FILTERING_EXPORT
vtkImageToStructuredPoints
:
public
vtkImageAlgorithm
38
{
39
public
:
40
static
vtkImageToStructuredPoints
*
New
();
41
vtkTypeMacro(
vtkImageToStructuredPoints
,
vtkImageAlgorithm
);
42
void
PrintSelf
(ostream& os,
vtkIndent
indent);
43
45
46
void
SetVectorInput(
vtkImageData
*input);
47
vtkImageData
*GetVectorInput();
49
51
vtkStructuredPoints
* GetStructuredPointsOutput();
52
53
protected
:
54
vtkImageToStructuredPoints
();
55
~
vtkImageToStructuredPoints
();
56
57
// to translate the wholeExtent to have min 0 ( I do not like this hack).
58
int
Translate[3];
59
60
virtual
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
61
virtual
int
RequestInformation
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
62
virtual
int
RequestUpdateExtent
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
63
64
virtual
int
FillOutputPortInformation
(
int
,
vtkInformation
*);
65
virtual
int
FillInputPortInformation
(
int
,
vtkInformation
*);
66
67
private
:
68
vtkImageToStructuredPoints
(
const
vtkImageToStructuredPoints
&);
// Not implemented.
69
void
operator=(
const
vtkImageToStructuredPoints
&);
// Not implemented.
70
};
71
72
73
#endif
74
75
Generated on Wed May 30 2012 13:21:55 for VTK by
1.8.1