summaryrefslogtreecommitdiff
path: root/src/GudhUI/alpha_complex_persistence.cpp
blob: 4f85459a1c424df6528f19d6014de8a1e3f2c82a (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
#include <iostream>
#include <string>


#include <QtGui/QApplication>

// to construct a Delaunay_triangulation from a OFF file
#include <gudhi/Delaunay_triangulation_off_io.h>
#include <gudhi/Alpha_complex.h>
#include <gudhi/Persistent_cohomology.h>

#include "utils/Bar_code_persistence.h"

void usage(char * const progName) {
  std::cerr << "Usage: " << progName << " filename.off " <<  // alpha_square_max_value[double] " <<
      "coeff_field_characteristic[integer > 0] min_persistence[double >= -1.0]" << std::endl;
  std::cerr << "       i.e.: " << progName << " ../../data/points/alphacomplexdoc.off 60.0 2 0.02" << std::endl;
  exit(-1); // ----- >>
}

int main(int argc, char **argv) {
  if (argc != 4) {
    std::cerr << "Error: Number of arguments (" << argc << ") is not correct" << std::endl;
    usage(argv[0]);
  }
  
  QApplication qtapp(argc, argv);

  std::string off_file_name(argv[1]);
  // double alpha_square_max_value = atof(argv[2]);
  double alpha_square_max_value = 1e20;
  int coeff_field_characteristic = atoi(argv[2]);  // argv[3]
  double min_persistence = atof(argv[3]);  // argv[4]
  
  // ----------------------------------------------------------------------------
  // Init of an alpha complex from an OFF file
  // ----------------------------------------------------------------------------
  typedef CGAL::Epick_d< CGAL::Dynamic_dimension_tag > Kernel;
  Gudhi::alphacomplex::Alpha_complex<Kernel> alpha_complex_from_file(off_file_name, alpha_square_max_value);

  // ----------------------------------------------------------------------------
  // Display information about the alpha complex
  // ----------------------------------------------------------------------------
  std::cout << "Alpha complex is of dimension " << alpha_complex_from_file.dimension() <<
      " - " << alpha_complex_from_file.num_simplices() << " simplices - " <<
      alpha_complex_from_file.num_vertices() << " vertices." << std::endl;

  // Sort the simplices in the order of the filtration
  alpha_complex_from_file.initialize_filtration();

  std::cout << "Simplex_tree dim: " << alpha_complex_from_file.dimension() << std::endl;
  // Compute the persistence diagram of the complex
  Gudhi::persistent_cohomology::Persistent_cohomology< Gudhi::alphacomplex::Alpha_complex<Kernel>,
      Gudhi::persistent_cohomology::Field_Zp > pcoh(alpha_complex_from_file);
  
  std::cout << "coeff_field_characteristic " << coeff_field_characteristic <<
      " - min_persistence " << min_persistence << std::endl;

  // initializes the coefficient field for homology
  pcoh.init_coefficients(coeff_field_characteristic);

  pcoh.compute_persistent_cohomology(min_persistence);

  pcoh.output_diagram();
  
  std::vector<std::pair<double, double>> persistence_vector;
  pcoh.get_persistence(persistence_vector);

  Bar_code_persistence bc_persistence;
  
  for (auto persistence : persistence_vector) {
    bc_persistence.insert(persistence.first, persistence.second);
  }

  bc_persistence.show();

  return qtapp.exec();
}