error_simulation.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 "calc/ResultSimulation.h"
23 #include "utils/colors.h"
24 #include "utils/print.h"
25 
26 #ifdef HAVE_PYTHONLIBS
27 
28 // import the c++ wrapper for matplot lib
29 // https://github.com/lava/matplotlib-cpp
30 // sudo apt-get install python-matplotlib python-numpy python2.7-dev
31 #include "plot/matplotlibcpp.h"
32 
33 #endif
34 
35 int main(int argc, char **argv) {
36 
37  // Verbosity setting
39 
40  // Ensure we have a path
41  if (argc < 4) {
42  PRINT_ERROR(RED "ERROR: ./error_simulation <file_est.txt> <file_std.txt> <file_gt.txt>\n" RESET);
43  PRINT_ERROR(RED "ERROR: rosrun ov_eval error_simulation <file_est.txt> <file_std.txt> <file_gt.txt>\n" RESET);
44  std::exit(EXIT_FAILURE);
45  }
46 
47  // Create our trajectory object
48  ov_eval::ResultSimulation traj(argv[1], argv[2], argv[3]);
49 
50  // Plot the state errors
51  PRINT_INFO("Plotting state variable errors...\n");
52  traj.plot_state(true);
53 
54  // Plot time offset
55  PRINT_INFO("Plotting time offset error...\n");
56  traj.plot_timeoff(true, 10);
57 
58  // Plot camera intrinsics
59  PRINT_INFO("Plotting camera intrinsics...\n");
60  traj.plot_cam_instrinsics(true, 60);
61 
62  // Plot camera extrinsics
63  PRINT_INFO("Plotting camera extrinsics...\n");
64  traj.plot_cam_extrinsics(true, 60);
65 
66  // Plot IMU intrinsics
67  PRINT_INFO("Plotting IMU intrinsics...\n");
68  traj.plot_imu_intrinsics(true, 60);
69 
70 #ifdef HAVE_PYTHONLIBS
71  matplotlibcpp::show(true);
72 #endif
73 
74  // Done!
75  return EXIT_SUCCESS;
76 }
void plot_imu_intrinsics(bool doplotting, double max_time=INFINITY)
Will plot the imu intrinsic errors.
void plot_state(bool doplotting, double max_time=INFINITY)
Will plot the state error and its three sigma bounds.
#define RESET
RED
void plot_timeoff(bool doplotting, double max_time=INFINITY)
Will plot the state imu camera offset and its sigma bound.
void plot_cam_extrinsics(bool doplotting, double max_time=INFINITY)
Will plot the camera calibration extrinsic transform.
void plot_cam_instrinsics(bool doplotting, double max_time=INFINITY)
Will plot the camera calibration intrinsics.
int main(int argc, char **argv)
void show(const bool block=true)
A single simulation run (the full state not just pose).
static void setPrintLevel(const std::string &level)


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