VTK  9.2.6
vtkReebGraphSurfaceSkeletonFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkReebGraphSurfaceSkeletonFilter.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=========================================================================*/
46#ifndef vtkReebGraphSurfaceSkeletonFilter_h
47#define vtkReebGraphSurfaceSkeletonFilter_h
48
50#include "vtkFiltersReebGraphModule.h" // For export macro
51
52class vtkReebGraph;
53class vtkTable;
54
55class VTKFILTERSREEBGRAPH_EXPORT vtkReebGraphSurfaceSkeletonFilter : public vtkDataObjectAlgorithm
56{
57public:
60 void PrintSelf(ostream& os, vtkIndent indent) override;
61
63
67 vtkSetMacro(NumberOfSamples, int);
68 vtkGetMacro(NumberOfSamples, int);
70
72
76 vtkSetMacro(NumberOfSmoothingIterations, int);
77 vtkGetMacro(NumberOfSmoothingIterations, int);
79
81
85 vtkSetMacro(FieldId, vtkIdType);
86 vtkGetMacro(FieldId, vtkIdType);
88
90
91protected:
94
96 int NumberOfSamples, NumberOfSmoothingIterations;
97
98 int FillInputPortInformation(int portNumber, vtkInformation*) override;
99 int FillOutputPortInformation(int portNumber, vtkInformation* info) override;
100
102 vtkInformationVector* outputVector) override;
103
104private:
106 void operator=(const vtkReebGraphSurfaceSkeletonFilter&) = delete;
107};
108
109#endif
Superclass for algorithms that produce only data object as output.
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
compute a skeletal embedding of the Reeb graph of a scalar field defined on a triangulated surface (v...
static vtkReebGraphSurfaceSkeletonFilter * New()
int FillOutputPortInformation(int portNumber, vtkInformation *info) override
Fill the output port information objects for this algorithm.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
int FillInputPortInformation(int portNumber, vtkInformation *) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Reeb graph computation for PL scalar fields.
Definition: vtkReebGraph.h:135
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:74
int vtkIdType
Definition: vtkType.h:332