VTK
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=========================================================================*/
30#ifndef vtkImageToStructuredPoints_h
31#define vtkImageToStructuredPoints_h
32
33#include "vtkCommonExecutionModelModule.h" // For export macro
34#include "vtkImageAlgorithm.h"
35
36class vtkImageData;
38
39class VTKCOMMONEXECUTIONMODEL_EXPORT vtkImageToStructuredPoints : public vtkImageAlgorithm
40{
41public:
44 void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
45
47
53
58
59protected:
62
63 // to translate the wholeExtent to have min 0 ( I do not like this hack).
64 int Translate[3];
65
66 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
67 int RequestInformation (vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
68 int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
69
70 int FillOutputPortInformation(int, vtkInformation*) VTK_OVERRIDE;
71 int FillInputPortInformation(int, vtkInformation*) VTK_OVERRIDE;
72
73private:
75 void operator=(const vtkImageToStructuredPoints&) VTK_DELETE_FUNCTION;
76};
77
78
79#endif
80
81
Generic algorithm superclass for image algs.
topologically and geometrically regular array of data
Definition: vtkImageData.h:46
Attaches image pipeline to VTK.
static vtkImageToStructuredPoints * New()
void SetVectorInputData(vtkImageData *input)
Set/Get the input object from the image pipeline.
vtkImageData * GetVectorInput()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkImageToStructuredPoints() override
vtkStructuredPoints * GetStructuredPointsOutput()
Get the output of the filter.
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A subclass of ImageData.