VTK  9.3.20240424
vtkAreaContourSpectrumFilter.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
35#ifndef vtkAreaContourSpectrumFilter_h
36#define vtkAreaContourSpectrumFilter_h
37
39#include "vtkFiltersGeneralModule.h" // For export macro
40
41VTK_ABI_NAMESPACE_BEGIN
42class vtkTable;
43
44class VTKFILTERSGENERAL_EXPORT vtkAreaContourSpectrumFilter : public vtkDataObjectAlgorithm
45{
46public:
49 void PrintSelf(ostream& os, vtkIndent indent) override;
50
52
56 vtkSetMacro(ArcId, vtkIdType);
57 vtkGetMacro(ArcId, vtkIdType);
59
61
65 vtkSetMacro(NumberOfSamples, int);
66 vtkGetMacro(NumberOfSamples, int);
68
70
74 vtkSetMacro(FieldId, vtkIdType);
75 vtkGetMacro(FieldId, vtkIdType);
77
79
80protected:
83
84 vtkIdType ArcId, FieldId;
86
87 int FillInputPortInformation(int portNumber, vtkInformation*) override;
88 int FillOutputPortInformation(int portNumber, vtkInformation* info) override;
89
90 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
91 vtkInformationVector* outputVector) override;
92
93private:
95 void operator=(const vtkAreaContourSpectrumFilter&) = delete;
96};
97
98VTK_ABI_NAMESPACE_END
99#endif
compute an approximation of the area contour signature (evolution of the area of the input surface al...
static vtkAreaContourSpectrumFilter * New()
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
int FillInputPortInformation(int portNumber, vtkInformation *) override
Fill the input port information objects for this algorithm.
~vtkAreaContourSpectrumFilter() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillOutputPortInformation(int portNumber, vtkInformation *info) override
Fill the output port information objects for this algorithm.
Superclass for algorithms that produce only data object as output.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:168
int vtkIdType
Definition vtkType.h:315