format_converter.cpp
Go to the documentation of this file.
1 /*
2  * OpenVINS: An Open Platform for Visual-Inertial Research
3  * Copyright (C) 2018-2023 Patrick Geneva
4  * Copyright (C) 2018-2023 Guoquan Huang
5  * Copyright (C) 2018-2023 OpenVINS Contributors
6  * Copyright (C) 2018-2019 Kevin Eckenhoff
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #include <Eigen/Eigen>
23 #include <boost/algorithm/string/predicate.hpp>
24 #include <boost/filesystem.hpp>
25 #include <fstream>
26 #include <iostream>
27 #include <sstream>
28 #include <string>
29 
30 #include "utils/colors.h"
31 #include "utils/print.h"
32 
36 void process_csv(std::string infile) {
37 
38  // Verbosity setting
40 
41  // Check if file paths are good
42  std::ifstream file1;
43  std::string line;
44  file1.open(infile);
45  PRINT_INFO("Opening file %s\n", boost::filesystem::path(infile).filename().c_str());
46 
47  // Check that it was successful
48  if (!file1) {
49  PRINT_ERROR(RED "ERROR: Unable to open input file...\n" RESET);
50  PRINT_ERROR(RED "ERROR: %s\n" RESET, infile.c_str());
51  std::exit(EXIT_FAILURE);
52  }
53 
54  // Loop through each line of this file
55  std::vector<Eigen::VectorXd> traj_data;
56  std::string current_line;
57  while (std::getline(file1, current_line)) {
58 
59  // Skip if we start with a comment
60  if (!current_line.find("#"))
61  continue;
62 
63  // Loop variables
64  int i = 0;
65  std::istringstream s(current_line);
66  std::string field;
67  Eigen::Matrix<double, 8, 1> data;
68 
69  // Loop through this line (timestamp(ns) tx ty tz qw qx qy qz)
70  while (std::getline(s, field, ',')) {
71  // Skip if empty
72  if (field.empty() || i >= data.rows())
73  continue;
74  // save the data to our vector
75  data(i) = std::atof(field.c_str());
76  i++;
77  }
78 
79  // Only a valid line if we have all the parameters
80  if (i > 7) {
81  traj_data.push_back(data);
82  // std::stringstream ss;
83  // ss << std::setprecision(5) << data.transpose() << std::endl;
84  // PRINT_DEBUG(ss.str().c_str());
85  }
86  }
87 
88  // Finally close the file
89  file1.close();
90 
91  // Error if we don't have any data
92  if (traj_data.empty()) {
93  PRINT_ERROR(RED "ERROR: Could not parse any data from the file!!\n" RESET);
94  PRINT_ERROR(RED "ERROR: %s\n" RESET, infile.c_str());
95  std::exit(EXIT_FAILURE);
96  }
97  PRINT_INFO("\t- Loaded %d poses from file\n", (int)traj_data.size());
98 
99  // If file exists already then crash
100  std::string outfile = infile.substr(0, infile.find_last_of('.')) + ".txt";
101  if (boost::filesystem::exists(outfile)) {
102  PRINT_ERROR(RED "\t- ERROR: Output file already exists, please delete and re-run this script!!\n" RESET);
103  PRINT_ERROR(RED "\t- ERROR: %s\n" RESET, outfile.c_str());
104  return;
105  }
106 
107  // Open this file we want to write to
108  std::ofstream file2;
109  file2.open(outfile.c_str());
110  if (file2.fail()) {
111  PRINT_ERROR(RED "ERROR: Unable to open output file!!\n" RESET);
112  PRINT_ERROR(RED "ERROR: %s\n" RESET, outfile.c_str());
113  std::exit(EXIT_FAILURE);
114  }
115  file2 << "# timestamp(s) tx ty tz qx qy qz qw" << std::endl;
116 
117  // Write to disk in the correct order!
118  for (size_t i = 0; i < traj_data.size(); i++) {
119  file2.precision(5);
120  file2.setf(std::ios::fixed, std::ios::floatfield);
121  file2 << 1e-9 * traj_data.at(i)(0) << " ";
122  file2.precision(6);
123  file2 << traj_data.at(i)(1) << " " << traj_data.at(i)(2) << " " << traj_data.at(i)(3) << " " << traj_data.at(i)(5) << " "
124  << traj_data.at(i)(6) << " " << traj_data.at(i)(7) << " " << traj_data.at(i)(4) << std::endl;
125  }
126  PRINT_INFO("\t- Saved to file %s\n", boost::filesystem::path(outfile).filename().c_str());
127 
128  // Finally close the file
129  file2.close();
130 }
131 
132 int main(int argc, char **argv) {
133 
134  // Ensure we have a path
135  if (argc < 2) {
136  PRINT_ERROR(RED "ERROR: Please specify a file to convert\n" RESET);
137  PRINT_ERROR(RED "ERROR: ./format_converter <file.csv or folder\n" RESET);
138  PRINT_ERROR(RED "ERROR: rosrun ov_eval format_converter <file.csv or folder>\n" RESET);
139  std::exit(EXIT_FAILURE);
140  }
141 
142  // If we do not have a wildcard, then process this one csv
143  if (boost::algorithm::ends_with(argv[1], "csv")) {
144 
145  // Process this single file
146  process_csv(argv[1]);
147 
148  } else {
149 
150  // Loop through this directory
151  boost::filesystem::path infolder(argv[1]);
152  for (auto &p : boost::filesystem::recursive_directory_iterator(infolder)) {
153  if (p.path().extension() == ".csv") {
154  process_csv(p.path().string());
155  }
156  }
157  }
158 
159  // Done!
160  return EXIT_SUCCESS;
161 }
#define RESET
RED
XmlRpcServer s
int main(int argc, char **argv)
static void setPrintLevel(const std::string &level)
void process_csv(std::string infile)


ov_eval
Author(s): Patrick Geneva , Kevin Eckenhoff , Guoquan Huang
autogenerated on Wed Jun 21 2023 03:05:40