22 #include <Eigen/Eigen> 23 #include <boost/algorithm/string/predicate.hpp> 24 #include <boost/filesystem.hpp> 45 PRINT_INFO(
"Opening file %s\n", boost::filesystem::path(infile).filename().c_str());
51 std::exit(EXIT_FAILURE);
55 std::vector<Eigen::VectorXd> traj_data;
56 std::string current_line;
57 while (std::getline(file1, current_line)) {
60 if (!current_line.find(
"#"))
65 std::istringstream
s(current_line);
67 Eigen::Matrix<double, 8, 1> data;
70 while (std::getline(s, field,
',')) {
72 if (field.empty() || i >= data.rows())
75 data(i) = std::atof(field.c_str());
81 traj_data.push_back(data);
92 if (traj_data.empty()) {
95 std::exit(EXIT_FAILURE);
97 PRINT_INFO(
"\t- Loaded %d poses from file\n", (
int)traj_data.size());
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);
109 file2.open(outfile.c_str());
113 std::exit(EXIT_FAILURE);
115 file2 <<
"# timestamp(s) tx ty tz qx qy qz qw" << std::endl;
118 for (
size_t i = 0; i < traj_data.size(); i++) {
120 file2.setf(std::ios::fixed, std::ios::floatfield);
121 file2 << 1e-9 * traj_data.at(i)(0) <<
" ";
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;
126 PRINT_INFO(
"\t- Saved to file %s\n", boost::filesystem::path(outfile).filename().c_str());
132 int main(
int argc,
char **argv) {
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);
143 if (boost::algorithm::ends_with(argv[1],
"csv")) {
151 boost::filesystem::path infolder(argv[1]);
152 for (
auto &p : boost::filesystem::recursive_directory_iterator(infolder)) {
153 if (p.path().extension() ==
".csv") {
static void setPrintLevel(const std::string &level)
#define PRINT_ERROR(x...)