#include <gudhi/Flag_complex_edge_collapser.h>
#include <gudhi/Simplex_tree.h>
#include <gudhi/Persistent_cohomology.h>
#include <gudhi/Points_off_io.h>
#include <boost/range/adaptor/transformed.hpp>
#include<utility>
#include<vector>
#include<tuple>
using Point = std::vector<Filtration_value>;
using Vector_of_points = std::vector<Point>;
using Persistence_interval = std::tuple<int, Filtration_value, Filtration_value>;
struct cmp_intervals_by_length {
explicit cmp_intervals_by_length(Simplex_tree * sc)
: sc_(sc) { }
template<typename Persistent_interval>
bool operator()(const Persistent_interval & p1, const Persistent_interval & p2) {
}
Simplex_tree* sc_;
};
std::vector<Persistence_interval> get_persistence_intervals(Simplex_tree& st, int ambient_dim) {
std::vector<Persistence_interval> persistence_intervals;
Persistent_cohomology pcoh(st);
int p = 11;
pcoh.init_coefficients(p);
pcoh.compute_persistent_cohomology();
cmp_intervals_by_length cmp(&st);
auto persistent_pairs = pcoh.get_persistent_pairs();
std::sort(std::begin(persistent_pairs), std::end(persistent_pairs), cmp);
for (auto pair : persistent_pairs) {
persistence_intervals.emplace_back(st.
dimension(get<0>(pair)),
}
return persistence_intervals;
}
int main(int argc, char* argv[]) {
if (argc != 3) {
std::cerr << "This program requires an OFF file and minimal threshold value as parameter\n";
std::cerr << "For instance: ./Edge_collapse_conserve_persistence ../../data/points/tore3D_300.off 1.\n";
exit(-1);
}
std::string off_file_points {argv[1]};
double threshold {atof(argv[2])};
if (!off_reader.is_valid()) {
std::cerr << "Unable to read file " << off_file_points << "\n";
exit(-1);
}
Vector_of_points point_vector = off_reader.get_point_cloud();
if (point_vector.size() <= 0) {
std::cerr << "Empty point cloud." << std::endl;
exit(-1);
}
threshold,
if (num_edges(proximity_graph) <= 0) {
std::cerr << "Total number of edges is zero." << std::endl;
exit(-1);
}
int ambient_dim = point_vector[0].size();
auto remaining_edges = Gudhi::collapse::flag_complex_collapse_edges(
boost::adaptors::transform(edges(proximity_graph), [&](auto&&edge){
return std::make_tuple(static_cast<Vertex_handle>(source(edge, proximity_graph)),
static_cast<Vertex_handle>(target(edge, proximity_graph)),
get(Gudhi::edge_filtration_t(), proximity_graph, edge));
})
);
Simplex_tree stree_from_collapse;
for (Vertex_handle vertex = 0; static_cast<std::size_t>(vertex) < point_vector.size(); vertex++) {
stree_from_collapse.insert_simplex({vertex}, 0.);
}
for (auto remaining_edge : remaining_edges) {
}
std::vector<Persistence_interval> persistence_intervals_from_collapse = get_persistence_intervals(stree_from_collapse, ambient_dim);
Simplex_tree stree_wo_collapse;
std::vector<Persistence_interval> persistence_intervals_wo_collapse = get_persistence_intervals(stree_wo_collapse, ambient_dim);
if (persistence_intervals_wo_collapse.size() != persistence_intervals_from_collapse.size()) {
std::cerr << "Number of persistence pairs with collapse is " << persistence_intervals_from_collapse.size() << std::endl;
std::cerr << "Number of persistence pairs without collapse is " << persistence_intervals_wo_collapse.size() << std::endl;
exit(-1);
}
int return_value = 0;
auto ppwoc_ptr = persistence_intervals_wo_collapse.begin();
for (auto ppfc: persistence_intervals_from_collapse) {
if (ppfc != *ppwoc_ptr) {
return_value++;
std::cerr << "Without collapse: "
<< " - With collapse: "
}
ppwoc_ptr++;
}
return return_value;
}
Compute the Euclidean distance between two Points given by a range of coordinates....
Definition distance_functions.h:32
OFF file reader implementation in order to read points from an OFF file.
Definition Points_off_io.h:122
Simplex Tree data structure for representing simplicial complexes.
Definition Simplex_tree.h:101
Options::Filtration_value Filtration_value
Definition Simplex_tree.h:108
void initialize_filtration(bool ignore_infinite_values=false) const
Initializes the filtration cache, i.e. sorts the simplices according to their order in the filtration...
Definition Simplex_tree.h:1485
void expansion(int max_dimension)
Expands the Simplex_tree containing only its one skeleton until dimension max_dim.
Definition Simplex_tree.h:1785
static const Filtration_value & filtration(Simplex_handle sh)
Returns the filtration value of a simplex.
Definition Simplex_tree.h:765
Options::Vertex_handle Vertex_handle
Definition Simplex_tree.h:122
void insert_graph(const OneSkeletonGraph &skel_graph)
Inserts a 1-skeleton in an empty Simplex_tree.
Definition Simplex_tree.h:1699
Structure representing the coefficient field .
Definition Field_Zp.h:27
Computes the persistent cohomology of a filtered complex.
Definition Persistent_cohomology.h:54
Global distance functions.
Graph simplicial complex methods.
constexpr auto & get(Gudhi::persistence_matrix::Persistence_interval< Dimension, Event_value > &i) noexcept
Partial specialization of get for Gudhi::persistence_matrix::Persistence_interval.
Definition persistence_interval.h:205
typename boost::adjacency_list< boost::vecS, boost::vecS, boost::directedS, boost::property< vertex_filtration_t, typename SimplicialComplexForProximityGraph::Filtration_value >, boost::property< edge_filtration_t, typename SimplicialComplexForProximityGraph::Filtration_value > > Proximity_graph
Proximity_graph contains the vertices and edges with their filtration values in order to store the re...
Definition graph_simplicial_complex.h:43
Proximity_graph< SimplicialComplexForProximityGraph > compute_proximity_graph(const ForwardPointRange &points, typename SimplicialComplexForProximityGraph::Filtration_value threshold, Distance distance)
Computes the proximity graph of the points.
Definition graph_simplicial_complex.h:62