summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Bottleneck_distance/example/bottleneck_read_file_example.cpp33
-rw-r--r--src/common/include/gudhi/reader_utils.h112
2 files changed, 115 insertions, 30 deletions
diff --git a/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp b/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp
index bde05825..de8c7f9d 100644
--- a/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp
+++ b/src/Bottleneck_distance/example/bottleneck_read_file_example.cpp
@@ -20,9 +20,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#define CGAL_HAS_THREADS
-
#include <gudhi/Bottleneck.h>
+#include <gudhi/reader_utils.h>
#include <iostream>
#include <vector>
#include <utility> // for pair
@@ -30,39 +29,15 @@
#include <sstream>
#include <string>
-std::vector< std::pair<double, double> > read_diagram_from_file(const char* filename) {
- std::ifstream in;
- in.open(filename);
- std::vector< std::pair<double, double> > result;
- if (!in.is_open()) {
- std::cerr << "File : " << filename << " do not exist. The program will now terminate \n";
- throw "File do not exist \n";
- }
-
- std::string line;
- while (!in.eof()) {
- getline(in, line);
- if (line.length() != 0) {
- std::stringstream lineSS;
- lineSS << line;
- double beginn, endd;
- lineSS >> beginn;
- lineSS >> endd;
- result.push_back(std::make_pair(beginn, endd));
- }
- }
- in.close();
- return result;
-} // read_diagram_from_file
-
int main(int argc, char** argv) {
if (argc < 3) {
std::cout << "To run this program please provide as an input two files with persistence diagrams. Each file " <<
"should contain a birth-death pair per line. Third, optional parameter is an error bound on a bottleneck" <<
" distance (set by default to zero). The program will now terminate \n";
}
- std::vector< std::pair< double, double > > diag1 = read_diagram_from_file(argv[1]);
- std::vector< std::pair< double, double > > diag2 = read_diagram_from_file(argv[2]);
+ std::vector<std::pair<double, double>> diag1 = read_persistence_diagram_from_file(argv[1], -1);
+ std::vector<std::pair<double, double>> diag2 = read_persistence_diagram_from_file(argv[2], -1);
+
double tolerance = 0.;
if (argc == 4) {
tolerance = atof(argv[3]);
diff --git a/src/common/include/gudhi/reader_utils.h b/src/common/include/gudhi/reader_utils.h
index 97a87edd..7b371afc 100644
--- a/src/common/include/gudhi/reader_utils.h
+++ b/src/common/include/gudhi/reader_utils.h
@@ -2,7 +2,7 @@
* (Geometric Understanding in Higher Dimensions) is a generic C++
* library for computational topology.
*
- * Author(s): Clement Maria, Pawel Dlotko
+ * Author(s): Clement Maria, Pawel Dlotko, Clement Jamin
*
* Copyright (C) 2014 INRIA
*
@@ -295,4 +295,114 @@ std::vector< std::vector< Filtration_value > > read_lower_triangular_matrix_from
return result;
} // read_lower_triangular_matrix_from_csv_file
+/**
+Reads a file containing persistance intervals.
+Each line might contain 2, 3 or 4 values: [field] [dimension] birth death
+The output iterator `out` is used this way: `*out++ = std::make_tuple(dim, birth, death);`
+where `dim` is an `int`, `birth` a `double`, and `death` a `double`.
+**/
+template <typename OutputIterator>
+void read_persistence_diagram_from_file(std::string const& filename, OutputIterator out) {
+
+ std::ifstream in;
+ in.open(filename);
+ if (!in.is_open()) {
+#ifdef DEBUG_TRACES
+ std::cerr << "File \"" << filename << "\" does not exist.\n";
+#endif // DEBUG_TRACES
+ return;
+ }
+
+ while (!in.eof()) {
+ std::string line;
+ getline(in, line);
+ if (line.length() != 0 && line[0] != '#') {
+ double numbers[4];
+ int n = sscanf(line.c_str(), "%lf %lf %lf %lf", &numbers[0], &numbers[1], &numbers[2], &numbers[3]);
+ if (n >= 2) {
+ //int field = (n == 4 ? static_cast<int>(numbers[0]) : -1);
+ int dim = (n >= 3 ? static_cast<int>(numbers[n - 3]) : -1);
+ *out++ = std::make_tuple(dim, numbers[n - 2], numbers[n - 1]);
+ }
+ }
+ }
+
+ in.close();
+} // read_persistence_diagram_from_file
+
+/**
+Reads a file containing persistance intervals.
+Each line might contain 2, 3 or 4 values: [field] [dimension] birth death
+The return value is an `std::map[dim, std::vector[std::pair[birth, death]]]`
+where `dim` is an `int`, `birth` a `double`, and `death` a `double`.
+**/
+std::map<int, std::vector<std::pair<double, double>>> read_persistence_diagram_from_file(std::string const& filename) {
+
+ std::map<int, std::vector<std::pair<double, double>>> ret;
+
+ std::ifstream in;
+ in.open(filename);
+ if (!in.is_open()) {
+#ifdef DEBUG_TRACES
+ std::cerr << "File \"" << filename << "\" does not exist.\n";
+#endif // DEBUG_TRACES
+ return ret;
+ }
+
+ while (!in.eof()) {
+ std::string line;
+ getline(in, line);
+ if (line.length() != 0 && line[0] != '#') {
+ double numbers[4];
+ int n = sscanf(line.c_str(), "%lf %lf %lf %lf", &numbers[0], &numbers[1], &numbers[2], &numbers[3]);
+ if (n >= 2) {
+ int dim = (n >= 3 ? static_cast<int>(numbers[n - 3]) : -1);
+ ret[dim].push_back(std::make_pair(numbers[n - 2], numbers[n - 1]));
+ }
+ }
+ }
+
+ in.close();
+ return ret;
+} // read_persistence_diagram_from_file
+
+
+/**
+Reads a file containing persistance intervals.
+Each line might contain 2, 3 or 4 values: [field] [dimension] birth death
+If `only_this_dim` = -1, dimension is ignored and all lines are returned.
+If `only_this_dim` is >= 0, only the lines where dimension = `only_this_dim`
+(or where dimension is not specified) are returned.
+The return value is an `std::vector[std::pair[birth, death]]`
+where `dim` is an `int`, `birth` a `double`, and `death` a `double`.
+**/
+std::vector<std::pair<double, double>> read_persistence_diagram_from_file(std::string const& filename, int only_this_dim) {
+
+ std::vector<std::pair<double, double>> ret;
+
+ std::ifstream in;
+ in.open(filename);
+ if (!in.is_open()) {
+#ifdef DEBUG_TRACES
+ std::cerr << "File \"" << filename << "\" does not exist.\n";
+#endif // DEBUG_TRACES
+ return ret;
+ }
+
+ while (!in.eof()) {
+ std::string line;
+ getline(in, line);
+ if (line.length() != 0 && line[0] != '#') {
+ double numbers[4];
+ int n = sscanf(line.c_str(), "%lf %lf %lf %lf", &numbers[0], &numbers[1], &numbers[2], &numbers[3]);
+ int dim = (n >= 3 ? static_cast<int>(numbers[n - 3]) : -1);
+ if (n >= 2 && (only_this_dim == -1 || dim == only_this_dim))
+ ret.push_back(std::make_pair(numbers[n - 2], numbers[n - 1]));
+ }
+ }
+
+ in.close();
+ return ret;
+} // read_persistence_diagram_from_file
+
#endif // READER_UTILS_H_