Nerve_GIC/VoronoiGIC.cpp
/* 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 N [-v] \n";
std::cerr << " i.e.: " << progName << " ../../data/points/human.off 100 -v \n";
exit(-1); // ----- >>
}
int main(int argc, char **argv) {
if ((argc != 3) && (argc != 4)) usage(argc, argv[0]);
using Point = std::vector<float>;
std::string off_file_name(argv[1]);
int m = atoi(argv[2]);
bool verb = 0;
if (argc == 4) verb = 1;
// ----------------------------------------------------------------------------
// Init of a graph induced complex from an OFF file
// ----------------------------------------------------------------------------
GIC.set_verbose(verb);
bool check = GIC.read_point_cloud(off_file_name);
if (!check) {
std::cout << "Incorrect OFF file." << std::endl;
} else {
GIC.set_type("GIC");
GIC.plot_OFF();
GIC.create_complex(stree);
// ----------------------------------------------------------------------------
// Display information about the graph induced complex
// ----------------------------------------------------------------------------
if (verb) {
std::cout << "Graph induced complex is of dimension " << stree.dimension() << " - " << stree.num_simplices()
<< " simplices - " << stree.num_vertices() << " vertices." << std::endl;
std::cout << "Iterator on graph induced complex simplices" << std::endl;
for (auto f_simplex : stree.filtration_simplex_range()) {
for (auto vertex : stree.simplex_vertex_range(f_simplex)) {
std::cout << vertex << " ";
}
std::cout << std::endl;
}
}
}
return 0;
}
Gudhi::Simplex_tree::num_vertices
size_t num_vertices() const
Returns the number of vertices in the complex.
Definition: Simplex_tree.h:515
Gudhi::cover_complex::Cover_complex::set_type
void set_type(const std::string &t)
Specifies whether the type of the output simplicial complex.
Definition: GIC.h:186
Gudhi::cover_complex::Cover_complex::find_simplices
void find_simplices()
Computes the simplices of the simplicial complex.
Definition: GIC.h:1320
Gudhi::cover_complex::Cover_complex::set_verbose
void set_verbose(bool verb=false)
Specifies whether the program should display information or not.
Definition: GIC.h:194
Gudhi::Simplex_tree::num_simplices
size_t num_simplices()
returns the number of simplices in the simplex_tree.
Definition: Simplex_tree.h:521
Gudhi::cover_complex::Cover_complex::set_cover_from_Voronoi
void set_cover_from_Voronoi(Distance distance, int m=100)
Creates the cover C from the Voronoï cells of a subsampling of the point cloud.
Definition: GIC.h:885
Gudhi::Simplex_tree::dimension
int dimension(Simplex_handle sh)
Returns the dimension of a simplex.
Definition: Simplex_tree.h:543
Gudhi::cover_complex::Cover_complex
Cover complex data structure.
Definition: GIC.h:87
Gudhi::cover_complex::Cover_complex::create_complex
void create_complex(SimplicialComplex &complex)
Creates the simplicial complex.
Definition: GIC.h:1306
Gudhi::cover_complex::Cover_complex::set_color_from_coordinate
void set_color_from_coordinate(int k=0)
Computes the function used to color the nodes of the simplicial complex from the k-th coordinate.
Definition: GIC.h:987
Gudhi::cover_complex::Cover_complex::set_graph_from_OFF
void set_graph_from_OFF()
Creates a graph G from the triangulation given by the input .OFF file.
Definition: GIC.h:342
Gudhi::Euclidean_distance
Compute the Euclidean distance between two Points given by a range of coordinates....
Definition: distance_functions.h:34
Gudhi::Simplex_tree::simplex_vertex_range
Simplex_vertex_range simplex_vertex_range(Simplex_handle sh)
Returns a range over the vertices of a simplex.
Definition: Simplex_tree.h:249
Gudhi::Simplex_tree::filtration_simplex_range
Filtration_simplex_range const & filtration_simplex_range(Indexing_tag=Indexing_tag())
Returns a range over the simplices of the simplicial complex, in the order of the filtration.
Definition: Simplex_tree.h:236
Gudhi::cover_complex::Cover_complex::plot_OFF
void plot_OFF()
Creates a .off file called SC.off for 3D visualization, which contains the 2-skeleton of the GIC....
Definition: GIC.h:1103
Gudhi::Simplex_tree
Simplex Tree data structure for representing simplicial complexes.
Definition: Simplex_tree.h:60
Gudhi::cover_complex::Cover_complex::read_point_cloud
bool read_point_cloud(const std::string &off_file_name)
Reads and stores the input point cloud from .(n)OFF file.
Definition: GIC.h:242
GUDHI  Version 3.1.1  - C++ library for Topological Data Analysis (TDA) and Higher Dimensional Geometry Understanding.  - Copyright : MIT Generated on Mon Apr 25 2022 14:03:04 for GUDHI by Doxygen 1.8.17