VTK  9.3.20240328
vtkImageToStructuredPoints.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
47 #ifndef vtkImageToStructuredPoints_h
48 #define vtkImageToStructuredPoints_h
49 
50 #include "vtkCommonExecutionModelModule.h" // For export macro
51 #include "vtkImageAlgorithm.h"
52 
53 VTK_ABI_NAMESPACE_BEGIN
54 class vtkImageData;
56 
57 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkImageToStructuredPoints : public vtkImageAlgorithm
58 {
59 public:
62  void PrintSelf(ostream& os, vtkIndent indent) override;
63 
65 
71 
76 
77 protected:
80 
81  // to translate the wholeExtent to have min 0 ( I do not like this hack).
82  int Translate[3];
83 
87 
90 
91 private:
93  void operator=(const vtkImageToStructuredPoints&) = delete;
94 };
95 
96 VTK_ABI_NAMESPACE_END
97 #endif
Generic algorithm superclass for image algs.
topologically and geometrically regular array of data
Definition: vtkImageData.h:155
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...
void SetVectorInputData(vtkImageData *input)
Set/Get the input object from the image pipeline.
vtkStructuredPoints * GetStructuredPointsOutput()
Get the output of the filter.
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.
static vtkImageToStructuredPoints * New()
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...
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A subclass of ImageData.