VTK
vtkReebGraphSurfaceSkeletonFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: $RCSfile$
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 =========================================================================*/
45 #ifndef vtkReebGraphSurfaceSkeletonFilter_h
46 #define vtkReebGraphSurfaceSkeletonFilter_h
47 
48 #include "vtkFiltersReebGraphModule.h" // For export macro
49 #include "vtkDataObjectAlgorithm.h"
50 
51 class vtkReebGraph;
52 class vtkTable;
53 
54 class VTKFILTERSREEBGRAPH_EXPORT vtkReebGraphSurfaceSkeletonFilter :
56 {
57 public:
60  void PrintSelf(ostream& os, vtkIndent indent);
61 
63 
65  vtkSetMacro(NumberOfSamples, int);
66  vtkGetMacro(NumberOfSamples, int);
68 
70 
71  vtkSetMacro(NumberOfSmoothingIterations, int);
72  vtkGetMacro(NumberOfSmoothingIterations, int);
74 
76 
77  vtkSetMacro(FieldId, vtkIdType);
78  vtkGetMacro(FieldId, vtkIdType);
80 
82 
83 protected:
86 
88  int NumberOfSamples, NumberOfSmoothingIterations;
89 
90  int FillInputPortInformation(int portNumber, vtkInformation *);
91  int FillOutputPortInformation(int portNumber, vtkInformation *info);
92 
93  int RequestData(vtkInformation *request,
94  vtkInformationVector **inputVector, vtkInformationVector *outputVector);
95 
96 private:
98  void operator=(const vtkReebGraphSurfaceSkeletonFilter&); // Not implemented.
99 };
100 
101 #endif
vtkDataObject * GetOutput()
Store vtkAlgorithm input/output information.
static vtkDataObjectAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
int vtkIdType
Definition: vtkType.h:275
Reeb graph computation for PL scalar fields.
Definition: vtkReebGraph.h:130
a simple class to control print indentation
Definition: vtkIndent.h:38
compute a skeletal embedding of the Reeb graph of a scalar field defined on a triangulated surface (v...
virtual int FillInputPortInformation(int port, vtkInformation *info)
Superclass for algorithms that produce only data object as output.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:67
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store zero or more vtkInformation instances.
virtual int FillOutputPortInformation(int port, vtkInformation *info)