-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestOVAS.cpp
More file actions
47 lines (38 loc) · 971 Bytes
/
testOVAS.cpp
File metadata and controls
47 lines (38 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* File: testOVAS.cpp
* Author: zoizoi
*
* Created on 23 January 2011, 14:19
*/
#include <cstdlib>
#include <vtkCellArray.h>
#include <vtkDataSetAttributes.h>
#include "Analyser4D.h"
#include "ImplicitVolume4D.h"
#include "MetaballsVol4D.h"
#include "ViewPathClusterFinder.h"
using namespace std;
/*
*
*/
int main(int argc, char** argv) {
int dim = 3;
vtkSmartPointer<vtkImageData> vtkVol = vtkSmartPointer<vtkImageData>::New();
Analyser4D* a4d = new Analyser4D;
a4d->setFile("./ovas.config");
//a4d->testFunc();
a4d->init();
a4d->interactSteps();
// a4d->analyse();
// a4d->outputFeatureScores();
//a4d->inputFeatureScores();
//a4d->testReebGraph();
//a4d->testContourTree();
//a4d->findOptimalPath();
//a4d->outputPath("outputPath");
//a4d->findAndOutputPaths();
// a4d->findPathClusters();
// a4d->vizMeanPaths();
// a4d->outputMeanPaths("clusterMeanPath");
//
}