Loader.h
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 #ifndef OV_EVAL_LOADER_H
23 #define OV_EVAL_LOADER_H
24 
25 #include <fstream>
26 #include <iostream>
27 #include <string>
28 
29 #include <Eigen/Eigen>
30 #include <boost/filesystem.hpp>
31 
32 #include "utils/colors.h"
33 #include "utils/print.h"
34 
35 namespace ov_eval {
36 
40 class Loader {
41 
42 public:
51  static void load_data(std::string path_traj, std::vector<double> &times, std::vector<Eigen::Matrix<double, 7, 1>> &poses,
52  std::vector<Eigen::Matrix3d> &cov_ori, std::vector<Eigen::Matrix3d> &cov_pos);
53 
62  static void load_data_csv(std::string path_traj, std::vector<double> &times, std::vector<Eigen::Matrix<double, 7, 1>> &poses,
63  std::vector<Eigen::Matrix3d> &cov_ori, std::vector<Eigen::Matrix3d> &cov_pos);
64 
70  static void load_simulation(std::string path, std::vector<Eigen::VectorXd> &values);
71 
79  static void load_timing_flamegraph(std::string path, std::vector<std::string> &names, std::vector<double> &times,
80  std::vector<Eigen::VectorXd> &timing_values);
81 
89  static void load_timing_percent(std::string path, std::vector<double> &times, std::vector<Eigen::Vector3d> &summed_values,
90  std::vector<Eigen::VectorXd> &node_values);
91 
97  static double get_total_length(const std::vector<Eigen::Matrix<double, 7, 1>> &poses);
98 
99 private:
104  Loader() {}
105 };
106 
107 } // namespace ov_eval
108 
109 #endif // OV_EVAL_LOADER_H
static void load_data(std::string path_traj, std::vector< double > &times, std::vector< Eigen::Matrix< double, 7, 1 >> &poses, std::vector< Eigen::Matrix3d > &cov_ori, std::vector< Eigen::Matrix3d > &cov_pos)
This will load space separated trajectory into memory.
Definition: Loader.cpp:26
Has helper functions to load text files from disk and process them.
Definition: Loader.h:40
static double get_total_length(const std::vector< Eigen::Matrix< double, 7, 1 >> &poses)
Will calculate the total trajectory distance.
Definition: Loader.cpp:388
Evaluation and recording utilities.
static void load_data_csv(std::string path_traj, std::vector< double > &times, std::vector< Eigen::Matrix< double, 7, 1 >> &poses, std::vector< Eigen::Matrix3d > &cov_ori, std::vector< Eigen::Matrix3d > &cov_pos)
This will load comma separated trajectory into memory (ASL/ETH format)
Definition: Loader.cpp:109
static void load_timing_percent(std::string path, std::vector< double > &times, std::vector< Eigen::Vector3d > &summed_values, std::vector< Eigen::VectorXd > &node_values)
Load space separated timing file from pid_ros.py file.
Definition: Loader.cpp:321
static void load_simulation(std::string path, std::vector< Eigen::VectorXd > &values)
Load an arbitrary sized row of space separated values, used for our simulation.
Definition: Loader.cpp:179
static void load_timing_flamegraph(std::string path, std::vector< std::string > &names, std::vector< double > &times, std::vector< Eigen::VectorXd > &timing_values)
Load comma separated timing file from pid_ros.py file.
Definition: Loader.cpp:240


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