22 #ifndef OV_EVAL_LOADER_H 23 #define OV_EVAL_LOADER_H 29 #include <Eigen/Eigen> 30 #include <boost/filesystem.hpp> 51 static void load_data(std::string path_traj, std::vector<double> ×, std::vector<Eigen::Matrix<double, 7, 1>> &poses,
52 std::vector<Eigen::Matrix3d> &cov_ori, std::vector<Eigen::Matrix3d> &cov_pos);
62 static void load_data_csv(std::string path_traj, std::vector<double> ×, std::vector<Eigen::Matrix<double, 7, 1>> &poses,
63 std::vector<Eigen::Matrix3d> &cov_ori, std::vector<Eigen::Matrix3d> &cov_pos);
70 static void load_simulation(std::string path, std::vector<Eigen::VectorXd> &values);
79 static void load_timing_flamegraph(std::string path, std::vector<std::string> &names, std::vector<double> ×,
80 std::vector<Eigen::VectorXd> &timing_values);
89 static void load_timing_percent(std::string path, std::vector<double> ×, std::vector<Eigen::Vector3d> &summed_values,
90 std::vector<Eigen::VectorXd> &node_values);
97 static double get_total_length(
const std::vector<Eigen::Matrix<double, 7, 1>> &poses);
109 #endif // OV_EVAL_LOADER_H static void load_data(std::string path_traj, std::vector< double > ×, 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.
Has helper functions to load text files from disk and process them.
static double get_total_length(const std::vector< Eigen::Matrix< double, 7, 1 >> &poses)
Will calculate the total trajectory distance.
Evaluation and recording utilities.
static void load_data_csv(std::string path_traj, std::vector< double > ×, 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)
static void load_timing_percent(std::string path, std::vector< double > ×, std::vector< Eigen::Vector3d > &summed_values, std::vector< Eigen::VectorXd > &node_values)
Load space separated timing file from pid_ros.py file.
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.
static void load_timing_flamegraph(std::string path, std::vector< std::string > &names, std::vector< double > ×, std::vector< Eigen::VectorXd > &timing_values)
Load comma separated timing file from pid_ros.py file.