VTK
vtkImageToPoints.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageToPoints.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 =========================================================================*/
31 #ifndef vtkImageToPoints_h
32 #define vtkImageToPoints_h
33 
34 #include "vtkImagingHybridModule.h" // For export macro
35 #include "vtkPolyDataAlgorithm.h"
36 
38 
39 class VTKIMAGINGHYBRID_EXPORT vtkImageToPoints :
41 {
42 public:
43  static vtkImageToPoints *New();
45  void PrintSelf(ostream& os, vtkIndent indent) override;
46 
48 
51  void SetStencilConnection(vtkAlgorithmOutput *port);
52  vtkAlgorithmOutput *GetStencilConnection();
53  void SetStencilData(vtkImageStencilData *stencil);
55 
57 
62  vtkSetMacro(OutputPointsPrecision, int);
63  vtkGetMacro(OutputPointsPrecision, int);
65 
66 protected:
68  ~vtkImageToPoints() override;
69 
71  vtkInformationVector **inInfo,
72  vtkInformationVector *outInfo) override;
73 
75  vtkInformationVector **inInfo,
76  vtkInformationVector *outInfo) override;
77 
78  int RequestData(vtkInformation *request,
79  vtkInformationVector **inInfo,
80  vtkInformationVector *outInfo) override;
81 
84 
86 
87 private:
88  vtkImageToPoints(const vtkImageToPoints&) = delete;
89  void operator=(const vtkImageToPoints&) = delete;
90 };
91 
92 #endif
Extract all image voxels as points.
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Proxy object to connect input/output ports.
static vtkPolyDataAlgorithm * New()
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
efficient description of an image stencil
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.