VTK  9.1.0
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=========================================================================*/
56#ifndef vtkImageToStructuredPoints_h
57#define vtkImageToStructuredPoints_h
58
59#include "vtkCommonExecutionModelModule.h" // For export macro
60#include "vtkImageAlgorithm.h"
61
62class vtkImageData;
64
65class VTKCOMMONEXECUTIONMODEL_EXPORT vtkImageToStructuredPoints : public vtkImageAlgorithm
66{
67public:
70 void PrintSelf(ostream& os, vtkIndent indent) override;
71
73
79
84
85protected:
88
89 // to translate the wholeExtent to have min 0 ( I do not like this hack).
90 int Translate[3];
91
95
98
99private:
101 void operator=(const vtkImageToStructuredPoints&) = delete;
102};
103
104#endif
Generic algorithm superclass for image algs.
topologically and geometrically regular array of data
Definition: vtkImageData.h:157
Attaches image pipeline to VTK.
int FillOutputPortInformation(int, vtkInformation *) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
static vtkImageToStructuredPoints * New()
void SetVectorInputData(vtkImageData *input)
Set/Get the input object from the image pipeline.
vtkImageData * GetVectorInput()
Set/Get the input object from the image pipeline.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called in response to a REQUEST_DATA request from the executive.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to translate the update extent requests from each output port ...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
~vtkImageToStructuredPoints() override
int FillInputPortInformation(int, vtkInformation *) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
vtkStructuredPoints * GetStructuredPointsOutput()
Get the output of the filter.
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A subclass of ImageData.