VTK  9.3.0
vtkSurfaceReconstructionFilter.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
28 #ifndef vtkSurfaceReconstructionFilter_h
29 #define vtkSurfaceReconstructionFilter_h
30 
31 #include "vtkImageAlgorithm.h"
32 #include "vtkImagingHybridModule.h" // For export macro
33 
34 VTK_ABI_NAMESPACE_BEGIN
35 class VTKIMAGINGHYBRID_EXPORT vtkSurfaceReconstructionFilter : public vtkImageAlgorithm
36 {
37 public:
39  void PrintSelf(ostream& os, vtkIndent indent) override;
40 
45 
47 
55  vtkGetMacro(NeighborhoodSize, int);
56  vtkSetMacro(NeighborhoodSize, int);
58 
60 
64  vtkGetMacro(SampleSpacing, double);
65  vtkSetMacro(SampleSpacing, double);
67 
68 protected:
70  ~vtkSurfaceReconstructionFilter() override = default;
71 
74 
76  double SampleSpacing;
77 
79 
80 private:
82  void operator=(const vtkSurfaceReconstructionFilter&) = delete;
83 };
84 
85 VTK_ABI_NAMESPACE_END
86 #endif
Generic algorithm superclass for image algs.
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
reconstructs a surface from unorganized points
static vtkSurfaceReconstructionFilter * New()
Construct with NeighborhoodSize=20.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called in response to a REQUEST_DATA request from the executive.
int FillInputPortInformation(int, vtkInformation *) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
~vtkSurfaceReconstructionFilter() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.