summaryrefslogtreecommitdiff
path: root/src/Nerve_GIC/utilities/Nerve.cpp
blob: 7b09f89d42f1360ceaaed8ae13a4cac5411840f0 (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*    This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
 *    See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
 *    Author(s):       Mathieu Carrière
 *
 *    Copyright (C) 2017 Inria
 *
 *    Modification(s):
 *      - YYYY/MM Author: Description of the modification
 */

#include <gudhi/GIC.h>

#include <string>
#include <vector>

void usage(int nbArgs, char *const progName) {
  std::cerr << "Error: Number of arguments (" << nbArgs << ") is not correct\n";
  std::cerr << "Usage: " << progName << " filename.off coordinate resolution gain [-v] \n";
  std::cerr << "       i.e.: " << progName << " ../../data/points/human.off 2 10 0.3 -v \n";
  exit(-1);  // ----- >>
}

int main(int argc, char **argv) {
  if ((argc != 5) && (argc != 6)) usage(argc, argv[0]);

  using Point = std::vector<float>;

  std::string off_file_name(argv[1]);
  int coord = atoi(argv[2]);
  int resolution = atoi(argv[3]);
  double gain = atof(argv[4]);
  bool verb = 0;
  if (argc == 6) verb = 1;

  // --------------------------------
  // Init of a Nerve from an OFF file
  // --------------------------------

  Gudhi::cover_complex::Cover_complex<Point> SC;
  SC.set_verbose(verb);

  bool check = SC.read_point_cloud(off_file_name);

  if (!check) {
    std::clog << "Incorrect OFF file." << std::endl;
  } else {
    SC.set_type("Nerve");

    SC.set_color_from_coordinate(coord);
    SC.set_function_from_coordinate(coord);

    SC.set_graph_from_OFF();
    SC.set_resolution_with_interval_number(resolution);
    SC.set_gain(gain);
    SC.set_cover_from_function();

    SC.find_simplices();

    SC.write_info();

    Gudhi::Simplex_tree<> stree;
    SC.create_complex(stree);
    SC.compute_PD();

    // ----------------------------------------------------------------------------
    // Display information about the graph induced complex
    // ----------------------------------------------------------------------------

    if (verb) {
      std::clog << "Nerve is of dimension " << stree.dimension() << " - " << stree.num_simplices() << " simplices - "
                << stree.num_vertices() << " vertices." << std::endl;

      std::clog << "Iterator on Nerve simplices" << std::endl;
      for (auto f_simplex : stree.filtration_simplex_range()) {
        for (auto vertex : stree.simplex_vertex_range(f_simplex)) {
          std::clog << vertex << " ";
        }
        std::clog << std::endl;
      }
    }
  }

  return 0;
}