VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkVolumeContourSpectrumFilter.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 __vtkVolumeContourSpectrumFilter_h
47 #define __vtkVolumeContourSpectrumFilter_h
48 
49 #include "vtkFiltersGeneralModule.h" // For export macro
50 #include "vtkDataObjectAlgorithm.h"
51 
52 class vtkReebGraph;
53 class vtkTable;
54 
55 class VTKFILTERSGENERAL_EXPORT vtkVolumeContourSpectrumFilter :
56  public vtkDataObjectAlgorithm
57 {
58 public:
59  static vtkVolumeContourSpectrumFilter* New();
60  vtkTypeMacro(vtkVolumeContourSpectrumFilter, vtkDataObjectAlgorithm);
61  void PrintSelf(ostream& os, vtkIndent indent);
62 
64 
66  vtkSetMacro(ArcId, vtkIdType);
67  vtkGetMacro(ArcId, vtkIdType);
69 
71 
72  vtkSetMacro(NumberOfSamples, int);
73  vtkGetMacro(NumberOfSamples, int);
75 
77 
78  vtkSetMacro(FieldId, vtkIdType);
79  vtkGetMacro(FieldId, vtkIdType);
81 
82  vtkTable* GetOutput();
83 
84 protected:
87 
88  vtkIdType ArcId, FieldId;
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 vtkVolumeContourSpectrumFilter&); // Not implemented.
100 };
101 
102 #endif
compute an approximation of the volume contour signature (evolution of the volume of the input tet-me...