summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/example/Nerve.cpp
diff options
context:
space:
mode:
authormcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-10-21 00:15:29 +0000
committermcarrier <mcarrier@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-10-21 00:15:29 +0000
commit4714ef44a23b156c16b04550c7b519cf456cb4c2 (patch)
treef7aaea465ad65803f8f55a4ffbd744d31be6a8fb /src/Nerve_GIC/example/Nerve.cpp
parentec228f211bd29661951c397fea55f934ab6369ac (diff)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/Nerve_GIC@2799 636b058d-ea47-450e-bf9e-a15bfbe3eedb
Former-commit-id: e41f8d57ca5e3e6ab90020f716d6362c73ee48da
Diffstat (limited to 'src/Nerve_GIC/example/Nerve.cpp')
-rw-r--r--src/Nerve_GIC/example/Nerve.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/Nerve_GIC/example/Nerve.cpp b/src/Nerve_GIC/example/Nerve.cpp
index e863b48b..cecc45c5 100644
--- a/src/Nerve_GIC/example/Nerve.cpp
+++ b/src/Nerve_GIC/example/Nerve.cpp
@@ -39,33 +39,34 @@ int main(int argc, char **argv) {
int resolution = atoi(argv[3]);
double gain = atof(argv[4]);
bool verb = 0; if(argc == 6) verb = 1;
- //int mask = 0;
// --------------------------------
// Init of a Nerve from an OFF file
// --------------------------------
- Gudhi::graph_induced_complex::Graph_induced_complex<Point> GIC;
- GIC.set_verbose(verb);
+ Gudhi::graph_induced_complex::Graph_induced_complex<Point> SC;
+ SC.set_verbose(verb);
- bool check = GIC.read_point_cloud(off_file_name);
+ bool check = SC.read_point_cloud(off_file_name);
if(!check) std::cout << "Incorrect OFF file." << std::endl;
else{
- GIC.set_color_from_coordinate(coord);
- GIC.set_function_from_coordinate(coord);
+ SC.set_type("Nerve");
- GIC.set_graph_from_OFF();
+ SC.set_color_from_coordinate(coord);
+ SC.set_function_from_coordinate(coord);
- GIC.set_resolution_with_interval_number(resolution); GIC.set_gain(gain);
- GIC.set_cover_from_function();
+ SC.set_graph_from_OFF();
- GIC.find_Nerve_simplices();
+ SC.set_resolution_with_interval_number(resolution); SC.set_gain(gain);
+ SC.set_cover_from_function();
- GIC.plot_TXT();
+ SC.find_simplices();
- Gudhi::Simplex_tree<> stree; GIC.create_complex(stree);
+ SC.write_info();
+
+ Gudhi::Simplex_tree<> stree; SC.create_complex(stree);
// ----------------------------------------------------------------------------
// Display information about the graph induced complex