VTK
vtkReebGraphVolumeSkeletonFilter.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 =========================================================================*/
46 #ifndef __vtkReebGraphVolumeSkeletonFilter_h
47 #define __vtkReebGraphVolumeSkeletonFilter_h
48 
49 #include "vtkDataObjectAlgorithm.h"
50 
51 class vtkReebGraph;
52 class vtkTable;
53 
56 {
57 public:
61  void PrintSelf(ostream& os, vtkIndent indent);
62 
64 
66  vtkSetMacro(NumberOfSamples, int);
67  vtkGetMacro(NumberOfSamples, int);
69 
71 
72  vtkSetMacro(NumberOfSmoothingIterations, int);
73  vtkGetMacro(NumberOfSmoothingIterations, int);
75 
77 
78  vtkSetMacro(FieldId, vtkIdType);
79  vtkGetMacro(FieldId, vtkIdType);
81 
83 
84 protected:
87 
89  int NumberOfSamples, NumberOfSmoothingIterations;
90 
91  int FillInputPortInformation(int portNumber, vtkInformation *);
92  int FillOutputPortInformation(int portNumber, vtkInformation *info);
93 
94  int RequestData(vtkInformation *request,
95  vtkInformationVector **inputVector, vtkInformationVector *outputVector);
96 
97 private:
99  void operator=(const vtkReebGraphVolumeSkeletonFilter&); // Not implemented.
100 };
101 
102 #endif