VTK
vtkBoostBetweennessClustering.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkBoostGraphAdapter.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=========================================================================*/
15
34#ifndef vtkBoostBetweennessClustering_h
35#define vtkBoostBetweennessClustering_h
36
37#include "vtkInfovisBoostGraphAlgorithmsModule.h" // For export macro
38#include "vtkGraphAlgorithm.h"
39
40class VTKINFOVISBOOSTGRAPHALGORITHMS_EXPORT vtkBoostBetweennessClustering :
42{
43public:
46 void PrintSelf(ostream &os, vtkIndent indent);
47
50
52
57 vtkGetMacro(Threshold, double);
59
61
65 vtkSetMacro(UseEdgeWeightArray, bool);
66 vtkBooleanMacro(UseEdgeWeightArray, bool);
68
69 vtkSetMacro(InvertEdgeWeightArray, bool);
70 vtkBooleanMacro(InvertEdgeWeightArray, bool);
71
73
77 vtkGetStringMacro(EdgeWeightArrayName);
78 vtkSetStringMacro(EdgeWeightArrayName);
80
82
86 vtkSetStringMacro(EdgeCentralityArrayName);
88
89protected:
90
91 virtual int RequestData(vtkInformation* request,
92 vtkInformationVector** inputVector,
93 vtkInformationVector* outputVector);
94
96
97
98private:
99
100 double Threshold;
101 bool UseEdgeWeightArray;
102 bool InvertEdgeWeightArray;
103 char* EdgeWeightArrayName;
104 char* EdgeCentralityArrayName;
105
107 void operator=(const vtkBoostBetweennessClustering&) VTK_DELETE_FUNCTION;
108};
109
110#endif // vtkBoostBetweennessClustering_h
Implements graph clustering based on edge betweenness centrality.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual int FillOutputPortInformation(int port, vtkInformation *info)
Fill the output port information objects for this algorithm.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
static vtkBoostBetweennessClustering * New()
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int Threshold(vtkDataSet *input, vtkUnstructuredGrid *output, vtkDataArray *field, double lower, double upper)
@ info
Definition: vtkX3D.h:376
@ port
Definition: vtkX3D.h:447
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.