├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── UnifiedCvoConfig.cmake.in ├── baselines ├── lidar │ ├── results_gicp │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── errors │ │ │ ├── 00.txt │ │ │ ├── 01.txt │ │ │ ├── 02.txt │ │ │ ├── 03.txt │ │ │ ├── 04.txt │ │ │ ├── 05.txt │ │ │ ├── 06.txt │ │ │ ├── 07.txt │ │ │ ├── 08.txt │ │ │ ├── 09.txt │ │ │ └── 10.txt │ │ ├── plot_error │ │ │ ├── 00_avg_rl.txt │ │ │ ├── 00_avg_rs.txt │ │ │ ├── 00_avg_tl.txt │ │ │ ├── 00_avg_ts.txt │ │ │ ├── 00_rl.txt │ │ │ ├── 00_rs.txt │ │ │ ├── 00_tl.txt │ │ │ ├── 00_ts.txt │ │ │ ├── 01_avg_rl.txt │ │ │ ├── 01_avg_rs.txt │ │ │ ├── 01_avg_tl.txt │ │ │ ├── 01_avg_ts.txt │ │ │ ├── 01_rl.txt │ │ │ ├── 01_rs.txt │ │ │ ├── 01_tl.txt │ │ │ ├── 01_ts.txt │ │ │ ├── 02_avg_rl.txt │ │ │ ├── 02_avg_rs.txt │ │ │ ├── 02_avg_tl.txt │ │ │ ├── 02_avg_ts.txt │ │ │ ├── 02_rl.txt │ │ │ ├── 02_rs.txt │ │ │ ├── 02_tl.txt │ │ │ ├── 02_ts.txt │ │ │ ├── 03_avg_rl.txt │ │ │ ├── 03_avg_rs.txt │ │ │ ├── 03_avg_tl.txt │ │ │ ├── 03_avg_ts.txt │ │ │ ├── 03_rl.txt │ │ │ ├── 03_rs.txt │ │ │ ├── 03_tl.txt │ │ │ ├── 03_ts.txt │ │ │ ├── 04_avg_rl.txt │ │ │ ├── 04_avg_rs.txt │ │ │ ├── 04_avg_tl.txt │ │ │ ├── 04_avg_ts.txt │ │ │ ├── 04_rl.txt │ │ │ ├── 04_rs.txt │ │ │ ├── 04_tl.txt │ │ │ ├── 04_ts.txt │ │ │ ├── 05_avg_rl.txt │ │ │ ├── 05_avg_rs.txt │ │ │ ├── 05_avg_tl.txt │ │ │ ├── 05_avg_ts.txt │ │ │ ├── 05_rl.txt │ │ │ ├── 05_rs.txt │ │ │ ├── 05_tl.txt │ │ │ ├── 05_ts.txt │ │ │ ├── 06_avg_rl.txt │ │ │ ├── 06_avg_rs.txt │ │ │ ├── 06_avg_tl.txt │ │ │ ├── 06_avg_ts.txt │ │ │ ├── 06_rl.txt │ │ │ ├── 06_rs.txt │ │ │ ├── 06_tl.txt │ │ │ ├── 06_ts.txt │ │ │ ├── 07_avg_rl.txt │ │ │ ├── 07_avg_rs.txt │ │ │ ├── 07_avg_tl.txt │ │ │ ├── 07_avg_ts.txt │ │ │ ├── 07_rl.txt │ │ │ ├── 07_rs.txt │ │ │ ├── 07_tl.txt │ │ │ ├── 07_ts.txt │ │ │ ├── 08_avg_rl.txt │ │ │ ├── 08_avg_rs.txt │ │ │ ├── 08_avg_tl.txt │ │ │ ├── 08_avg_ts.txt │ │ │ ├── 08_rl.txt │ │ │ ├── 08_rs.txt │ │ │ ├── 08_tl.txt │ │ │ ├── 08_ts.txt │ │ │ ├── 09_avg_rl.txt │ │ │ ├── 09_avg_rs.txt │ │ │ ├── 09_avg_tl.txt │ │ │ ├── 09_avg_ts.txt │ │ │ ├── 09_rl.txt │ │ │ ├── 09_rs.txt │ │ │ ├── 09_tl.txt │ │ │ ├── 09_ts.txt │ │ │ ├── 10_avg_rl.txt │ │ │ ├── 10_avg_rs.txt │ │ │ ├── 10_avg_tl.txt │ │ │ ├── 10_avg_ts.txt │ │ │ ├── 10_rl.txt │ │ │ ├── 10_rs.txt │ │ │ ├── 10_tl.txt │ │ │ └── 10_ts.txt │ │ ├── stats.txt │ │ └── stats │ │ │ ├── 00_avg.txt │ │ │ ├── 01_avg.txt │ │ │ ├── 02_avg.txt │ │ │ ├── 03_avg.txt │ │ │ ├── 04_avg.txt │ │ │ ├── 05_avg.txt │ │ │ ├── 06_avg.txt │ │ │ ├── 07_avg.txt │ │ │ ├── 08_avg.txt │ │ │ ├── 09_avg.txt │ │ │ └── 10_avg.txt │ ├── results_mc │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── TIME.txt │ │ ├── TIME00.txt │ │ ├── TIME01.txt │ │ ├── TIME02.txt │ │ ├── TIME03.txt │ │ ├── TIME04.txt │ │ ├── TIME05.txt │ │ ├── TIME06.txt │ │ ├── TIME07.txt │ │ ├── TIME08.txt │ │ ├── TIME09.txt │ │ ├── TIME10.txt │ │ ├── errors │ │ │ ├── 00.txt │ │ │ ├── 01.txt │ │ │ ├── 02.txt │ │ │ ├── 03.txt │ │ │ ├── 04.txt │ │ │ ├── 05.txt │ │ │ ├── 06.txt │ │ │ ├── 07.txt │ │ │ ├── 08.txt │ │ │ ├── 09.txt │ │ │ └── 10.txt │ │ ├── plot_error │ │ │ ├── 00_avg_rl.txt │ │ │ ├── 00_avg_rs.txt │ │ │ ├── 00_avg_tl.txt │ │ │ ├── 00_avg_ts.txt │ │ │ ├── 00_rl.txt │ │ │ ├── 00_rs.txt │ │ │ ├── 00_tl.txt │ │ │ ├── 00_ts.txt │ │ │ ├── 01_avg_rl.txt │ │ │ ├── 01_avg_rs.txt │ │ │ ├── 01_avg_tl.txt │ │ │ ├── 01_avg_ts.txt │ │ │ ├── 01_rl.txt │ │ │ ├── 01_rs.txt │ │ │ ├── 01_tl.txt │ │ │ ├── 01_ts.txt │ │ │ ├── 02_avg_rl.txt │ │ │ ├── 02_avg_rs.txt │ │ │ ├── 02_avg_tl.txt │ │ │ ├── 02_avg_ts.txt │ │ │ ├── 02_rl.txt │ │ │ ├── 02_rs.txt │ │ │ ├── 02_tl.txt │ │ │ ├── 02_ts.txt │ │ │ ├── 03_avg_rl.txt │ │ │ ├── 03_avg_rs.txt │ │ │ ├── 03_avg_tl.txt │ │ │ ├── 03_avg_ts.txt │ │ │ ├── 03_rl.txt │ │ │ ├── 03_rs.txt │ │ │ ├── 03_tl.txt │ │ │ ├── 03_ts.txt │ │ │ ├── 04_avg_rl.txt │ │ │ ├── 04_avg_rs.txt │ │ │ ├── 04_avg_tl.txt │ │ │ ├── 04_avg_ts.txt │ │ │ ├── 04_rl.txt │ │ │ ├── 04_rs.txt │ │ │ ├── 04_tl.txt │ │ │ ├── 04_ts.txt │ │ │ ├── 05_avg_rl.txt │ │ │ ├── 05_avg_rs.txt │ │ │ ├── 05_avg_tl.txt │ │ │ ├── 05_avg_ts.txt │ │ │ ├── 05_rl.txt │ │ │ ├── 05_rs.txt │ │ │ ├── 05_tl.txt │ │ │ ├── 05_ts.txt │ │ │ ├── 06_avg_rl.txt │ │ │ ├── 06_avg_rs.txt │ │ │ ├── 06_avg_tl.txt │ │ │ ├── 06_avg_ts.txt │ │ │ ├── 06_rl.txt │ │ │ ├── 06_rs.txt │ │ │ ├── 06_tl.txt │ │ │ ├── 06_ts.txt │ │ │ ├── 07_avg_rl.txt │ │ │ ├── 07_avg_rs.txt │ │ │ ├── 07_avg_tl.txt │ │ │ ├── 07_avg_ts.txt │ │ │ ├── 07_rl.txt │ │ │ ├── 07_rs.txt │ │ │ ├── 07_tl.txt │ │ │ ├── 07_ts.txt │ │ │ ├── 08_avg_rl.txt │ │ │ ├── 08_avg_rs.txt │ │ │ ├── 08_avg_tl.txt │ │ │ ├── 08_avg_ts.txt │ │ │ ├── 08_rl.txt │ │ │ ├── 08_rs.txt │ │ │ ├── 08_tl.txt │ │ │ ├── 08_ts.txt │ │ │ ├── 09_avg_rl.txt │ │ │ ├── 09_avg_rs.txt │ │ │ ├── 09_avg_tl.txt │ │ │ ├── 09_avg_ts.txt │ │ │ ├── 09_rl.txt │ │ │ ├── 09_rs.txt │ │ │ ├── 09_tl.txt │ │ │ ├── 09_ts.txt │ │ │ ├── 10_avg_rl.txt │ │ │ ├── 10_avg_rs.txt │ │ │ ├── 10_avg_tl.txt │ │ │ ├── 10_avg_ts.txt │ │ │ ├── 10_rl.txt │ │ │ ├── 10_rs.txt │ │ │ ├── 10_tl.txt │ │ │ └── 10_ts.txt │ │ ├── stats.txt │ │ └── stats │ │ │ ├── 00_avg.txt │ │ │ ├── 01_avg.txt │ │ │ ├── 02_avg.txt │ │ │ ├── 03_avg.txt │ │ │ ├── 04_avg.txt │ │ │ ├── 05_avg.txt │ │ │ ├── 06_avg.txt │ │ │ ├── 07_avg.txt │ │ │ ├── 08_avg.txt │ │ │ ├── 09_avg.txt │ │ │ └── 10_avg.txt │ └── results_ndt │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt │ │ ├── plot_error │ │ ├── 00_avg_rl.txt │ │ ├── 00_avg_rs.txt │ │ ├── 00_avg_tl.txt │ │ ├── 00_avg_ts.txt │ │ ├── 00_rl.txt │ │ ├── 00_rs.txt │ │ ├── 00_tl.txt │ │ ├── 00_ts.txt │ │ ├── 01_avg_rl.txt │ │ ├── 01_avg_rs.txt │ │ ├── 01_avg_tl.txt │ │ ├── 01_avg_ts.txt │ │ ├── 01_rl.txt │ │ ├── 01_rs.txt │ │ ├── 01_tl.txt │ │ ├── 01_ts.txt │ │ ├── 02_avg_rl.txt │ │ ├── 02_avg_rs.txt │ │ ├── 02_avg_tl.txt │ │ ├── 02_avg_ts.txt │ │ ├── 02_rl.txt │ │ ├── 02_rs.txt │ │ ├── 02_tl.txt │ │ ├── 02_ts.txt │ │ ├── 03_avg_rl.txt │ │ ├── 03_avg_rs.txt │ │ ├── 03_avg_tl.txt │ │ ├── 03_avg_ts.txt │ │ ├── 03_rl.txt │ │ ├── 03_rs.txt │ │ ├── 03_tl.txt │ │ ├── 03_ts.txt │ │ ├── 04_avg_rl.txt │ │ ├── 04_avg_rs.txt │ │ ├── 04_avg_tl.txt │ │ ├── 04_avg_ts.txt │ │ ├── 04_rl.txt │ │ ├── 04_rs.txt │ │ ├── 04_tl.txt │ │ ├── 04_ts.txt │ │ ├── 05_avg_rl.txt │ │ ├── 05_avg_rs.txt │ │ ├── 05_avg_tl.txt │ │ ├── 05_avg_ts.txt │ │ ├── 05_rl.txt │ │ ├── 05_rs.txt │ │ ├── 05_tl.txt │ │ ├── 05_ts.txt │ │ ├── 06_avg_rl.txt │ │ ├── 06_avg_rs.txt │ │ ├── 06_avg_tl.txt │ │ ├── 06_avg_ts.txt │ │ ├── 06_rl.txt │ │ ├── 06_rs.txt │ │ ├── 06_tl.txt │ │ ├── 06_ts.txt │ │ ├── 07_avg_rl.txt │ │ ├── 07_avg_rs.txt │ │ ├── 07_avg_tl.txt │ │ ├── 07_avg_ts.txt │ │ ├── 07_rl.txt │ │ ├── 07_rs.txt │ │ ├── 07_tl.txt │ │ ├── 07_ts.txt │ │ ├── 08_avg_rl.txt │ │ ├── 08_avg_rs.txt │ │ ├── 08_avg_tl.txt │ │ ├── 08_avg_ts.txt │ │ ├── 08_rl.txt │ │ ├── 08_rs.txt │ │ ├── 08_tl.txt │ │ ├── 08_ts.txt │ │ ├── 09_avg_rl.txt │ │ ├── 09_avg_rs.txt │ │ ├── 09_avg_tl.txt │ │ ├── 09_avg_ts.txt │ │ ├── 09_rl.txt │ │ ├── 09_rs.txt │ │ ├── 09_tl.txt │ │ ├── 09_ts.txt │ │ ├── 10_avg_rl.txt │ │ ├── 10_avg_rs.txt │ │ ├── 10_avg_tl.txt │ │ ├── 10_avg_ts.txt │ │ ├── 10_rl.txt │ │ ├── 10_rs.txt │ │ ├── 10_tl.txt │ │ └── 10_ts.txt │ │ ├── stats.txt │ │ └── stats │ │ ├── 00_avg.txt │ │ ├── 01_avg.txt │ │ ├── 02_avg.txt │ │ ├── 03_avg.txt │ │ ├── 04_avg.txt │ │ ├── 05_avg.txt │ │ ├── 06_avg.txt │ │ ├── 07_avg.txt │ │ ├── 08_avg.txt │ │ ├── 09_avg.txt │ │ └── 10_avg.txt └── stereo │ ├── gicp │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt │ ├── plot_error │ │ ├── 00_avg_rl.txt │ │ ├── 00_avg_rs.txt │ │ ├── 00_avg_tl.txt │ │ ├── 00_avg_ts.txt │ │ ├── 00_rl.txt │ │ ├── 00_rs.txt │ │ ├── 00_tl.txt │ │ ├── 00_ts.txt │ │ ├── 01_avg_rl.txt │ │ ├── 01_avg_rs.txt │ │ ├── 01_avg_tl.txt │ │ ├── 01_avg_ts.txt │ │ ├── 01_rl.txt │ │ ├── 01_rs.txt │ │ ├── 01_tl.txt │ │ ├── 01_ts.txt │ │ ├── 02_avg_rl.txt │ │ ├── 02_avg_rs.txt │ │ ├── 02_avg_tl.txt │ │ ├── 02_avg_ts.txt │ │ ├── 02_rl.txt │ │ ├── 02_rs.txt │ │ ├── 02_tl.txt │ │ ├── 02_ts.txt │ │ ├── 03_avg_rl.txt │ │ ├── 03_avg_rs.txt │ │ ├── 03_avg_tl.txt │ │ ├── 03_avg_ts.txt │ │ ├── 03_rl.txt │ │ ├── 03_rs.txt │ │ ├── 03_tl.txt │ │ ├── 03_ts.txt │ │ ├── 04_avg_rl.txt │ │ ├── 04_avg_rs.txt │ │ ├── 04_avg_tl.txt │ │ ├── 04_avg_ts.txt │ │ ├── 04_rl.txt │ │ ├── 04_rs.txt │ │ ├── 04_tl.txt │ │ ├── 04_ts.txt │ │ ├── 05_avg_rl.txt │ │ ├── 05_avg_rs.txt │ │ ├── 05_avg_tl.txt │ │ ├── 05_avg_ts.txt │ │ ├── 05_rl.txt │ │ ├── 05_rs.txt │ │ ├── 05_tl.txt │ │ ├── 05_ts.txt │ │ ├── 06_avg_rl.txt │ │ ├── 06_avg_rs.txt │ │ ├── 06_avg_tl.txt │ │ ├── 06_avg_ts.txt │ │ ├── 06_rl.txt │ │ ├── 06_rs.txt │ │ ├── 06_tl.txt │ │ ├── 06_ts.txt │ │ ├── 07_avg_rl.txt │ │ ├── 07_avg_rs.txt │ │ ├── 07_avg_tl.txt │ │ ├── 07_avg_ts.txt │ │ ├── 07_rl.txt │ │ ├── 07_rs.txt │ │ ├── 07_tl.txt │ │ ├── 07_ts.txt │ │ ├── 08_avg_rl.txt │ │ ├── 08_avg_rs.txt │ │ ├── 08_avg_tl.txt │ │ ├── 08_avg_ts.txt │ │ ├── 08_rl.txt │ │ ├── 08_rs.txt │ │ ├── 08_tl.txt │ │ ├── 08_ts.txt │ │ ├── 09_avg_rl.txt │ │ ├── 09_avg_rs.txt │ │ ├── 09_avg_tl.txt │ │ ├── 09_avg_ts.txt │ │ ├── 09_rl.txt │ │ ├── 09_rs.txt │ │ ├── 09_tl.txt │ │ ├── 09_ts.txt │ │ ├── 10_avg_rl.txt │ │ ├── 10_avg_rs.txt │ │ ├── 10_avg_tl.txt │ │ ├── 10_avg_ts.txt │ │ ├── 10_rl.txt │ │ ├── 10_rs.txt │ │ ├── 10_tl.txt │ │ └── 10_ts.txt │ └── stats │ │ ├── 00_avg.txt │ │ ├── 01_avg.txt │ │ ├── 02_avg.txt │ │ ├── 03_avg.txt │ │ ├── 04_avg.txt │ │ ├── 05_avg.txt │ │ ├── 06_avg.txt │ │ ├── 07_avg.txt │ │ ├── 08_avg.txt │ │ ├── 09_avg.txt │ │ └── 10_avg.txt │ ├── mc_icp │ ├── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt │ └── stats │ │ ├── 00_avg.txt │ │ ├── 01_avg.txt │ │ ├── 02_avg.txt │ │ ├── 03_avg.txt │ │ ├── 04_avg.txt │ │ ├── 05_avg.txt │ │ ├── 06_avg.txt │ │ ├── 07_avg.txt │ │ ├── 08_avg.txt │ │ ├── 09_avg.txt │ │ └── 10_avg.txt │ └── ndt │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── errors │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ └── 10.txt │ ├── plot_error │ ├── 00_avg_rl.txt │ ├── 00_avg_rs.txt │ ├── 00_avg_tl.txt │ ├── 00_avg_ts.txt │ ├── 00_rl.txt │ ├── 00_rs.txt │ ├── 00_tl.txt │ ├── 00_ts.txt │ ├── 01_avg_rl.txt │ ├── 01_avg_rs.txt │ ├── 01_avg_tl.txt │ ├── 01_avg_ts.txt │ ├── 01_rl.txt │ ├── 01_rs.txt │ ├── 01_tl.txt │ ├── 01_ts.txt │ ├── 02_avg_rl.txt │ ├── 02_avg_rs.txt │ ├── 02_avg_tl.txt │ ├── 02_avg_ts.txt │ ├── 02_rl.txt │ ├── 02_rs.txt │ ├── 02_tl.txt │ ├── 02_ts.txt │ ├── 03_avg_rl.txt │ ├── 03_avg_rs.txt │ ├── 03_avg_tl.txt │ ├── 03_avg_ts.txt │ ├── 03_rl.txt │ ├── 03_rs.txt │ ├── 03_tl.txt │ ├── 03_ts.txt │ ├── 04_avg_rl.txt │ ├── 04_avg_rs.txt │ ├── 04_avg_tl.txt │ ├── 04_avg_ts.txt │ ├── 04_rl.txt │ ├── 04_rs.txt │ ├── 04_tl.txt │ ├── 04_ts.txt │ ├── 05_avg_rl.txt │ ├── 05_avg_rs.txt │ ├── 05_avg_tl.txt │ ├── 05_avg_ts.txt │ ├── 05_rl.txt │ ├── 05_rs.txt │ ├── 05_tl.txt │ ├── 05_ts.txt │ ├── 06_avg_rl.txt │ ├── 06_avg_rs.txt │ ├── 06_avg_tl.txt │ ├── 06_avg_ts.txt │ ├── 06_rl.txt │ ├── 06_rs.txt │ ├── 06_tl.txt │ ├── 06_ts.txt │ ├── 07_avg_rl.txt │ ├── 07_avg_rs.txt │ ├── 07_avg_tl.txt │ ├── 07_avg_ts.txt │ ├── 07_rl.txt │ ├── 07_rs.txt │ ├── 07_tl.txt │ ├── 07_ts.txt │ ├── 08_avg_rl.txt │ ├── 08_avg_rs.txt │ ├── 08_avg_tl.txt │ ├── 08_avg_ts.txt │ ├── 08_rl.txt │ ├── 08_rs.txt │ ├── 08_tl.txt │ ├── 08_ts.txt │ ├── 09_avg_rl.txt │ ├── 09_avg_rs.txt │ ├── 09_avg_tl.txt │ ├── 09_avg_ts.txt │ ├── 09_rl.txt │ ├── 09_rs.txt │ ├── 09_tl.txt │ ├── 09_ts.txt │ ├── 10_avg_rl.txt │ ├── 10_avg_rs.txt │ ├── 10_avg_tl.txt │ ├── 10_avg_ts.txt │ ├── 10_rl.txt │ ├── 10_rs.txt │ ├── 10_tl.txt │ └── 10_ts.txt │ └── stats │ ├── 00_avg.txt │ ├── 01_avg.txt │ ├── 02_avg.txt │ ├── 03_avg.txt │ ├── 04_avg.txt │ ├── 05_avg.txt │ ├── 06_avg.txt │ ├── 07_avg.txt │ ├── 08_avg.txt │ ├── 09_avg.txt │ └── 10_avg.txt ├── cmake ├── FindSuiteParse.cmake ├── FindTBB.cmake └── cvoConfig.cmake.in ├── cp_results.bash ├── ctags_gen.bash ├── cvo_params ├── cvo_geometric_params_gpu.yaml ├── cvo_geometric_params_img.yaml ├── cvo_geometric_params_img_gpu0.yaml ├── cvo_geometric_params_random.yaml ├── cvo_indoor_params.yaml ├── cvo_intensity_params_gpu.yaml ├── cvo_intensity_params_img.yaml ├── cvo_intensity_params_img_gpu0.yaml ├── cvo_intensity_params_irls_pcd.yaml ├── cvo_intensity_params_irls_tartan.yaml ├── cvo_intensity_params_irls_tum.yaml ├── cvo_outdoor_params.yaml ├── cvo_rgbd_params.yaml ├── cvo_semantic_params_img_gpu0.yaml ├── cvo_semantic_params_img_oct13.yaml └── cvo_semantic_params_img_oct14.yaml ├── demo_data ├── after_align.png ├── before_align.png ├── source.pcd ├── source.png ├── target.pcd └── target.png ├── devkit ├── cpp │ ├── evaluate_odometry.cpp │ ├── mail.h │ ├── matrix.cpp │ └── matrix.h ├── evaluation │ ├── __init__.py │ ├── addToConfusionMatrix.c │ ├── addToConfusionMatrix.pyx │ ├── addToConfusionMatrix_impl.c │ ├── evalInstanceLevelSemanticLabeling.py │ ├── evalPixelLevelSemanticLabeling.py │ ├── instance.py │ ├── instances2dict.py │ └── setup.py ├── helpers │ ├── __init__.py │ ├── annotation.py │ ├── csHelpers.py │ ├── kitti_instance_size_average.py │ ├── kitti_to_cityscapes.py │ ├── labels.py │ └── result_kitti_instance_size_averange.txt └── readme.txt ├── eval_batch.bash ├── experiment ├── plot_inner_product.m └── times_relative_tf.m ├── graph_defs ├── graph_tum.txt └── graph_tum2.txt ├── ground_truth ├── 10 │ └── 10.txt ├── 00.txt ├── 00 │ └── 00.txt ├── 01.txt ├── 01 │ └── 01.txt ├── 02.txt ├── 02 │ └── 02.txt ├── 03.txt ├── 03 │ └── 03.txt ├── 04.txt ├── 04 │ └── 04.txt ├── 05.txt ├── 05 │ └── 05.txt ├── 06.txt ├── 06 │ └── 06.txt ├── 07.txt ├── 07 │ └── 07.txt ├── 08.txt ├── 08 │ └── 08.txt ├── 09.txt ├── 09 │ └── 09.txt └── 10.txt ├── include └── UnifiedCvo │ ├── cvo │ ├── ACvo.hpp │ ├── AdaptiveCvoGPU.hpp │ ├── AdaptiveCvoGPU_impl.cuh │ ├── Association.hpp │ ├── Cvo.hpp │ ├── CvoFrame.hpp │ ├── CvoFrameGPU.cuh │ ├── CvoFrameGPU.hpp │ ├── CvoGPU.hpp │ ├── CvoGPU_impl.cuh │ ├── CvoParams.hpp │ ├── CvoState.cuh │ ├── IRLS.hpp │ ├── IRLS_Cost_CPU.hpp │ ├── IRLS_State.hpp │ ├── IRLS_State_CPU.hpp │ ├── IRLS_State_GPU.hpp │ ├── KDTreeVectorOfVectorsAdaptor.h │ ├── LieGroup.h │ ├── SparseKernelMat.hpp │ ├── gpu_utils.cuh │ ├── local_parameterization_se3.hpp │ ├── main.cpp │ └── nanoflann.hpp │ ├── dataset_handler │ ├── DataHandler.hpp │ ├── KittiHandler.hpp │ ├── LyftHandler.hpp │ ├── TartanAirHandler.hpp │ └── TumHandler.hpp │ ├── graph_optimizer │ ├── Frame.hpp │ ├── PoseGraph.hpp │ └── RelativePose.hpp │ ├── mapping │ ├── bki.h │ ├── bkiblock.h │ ├── bkioctomap.h │ ├── bkioctree.h │ ├── bkioctree_node.h │ ├── markerarray_pub.h │ ├── point3f.h │ └── rtree.h │ └── utils │ ├── Angle.h │ ├── Calibration.hpp │ ├── CircularBuffer.h │ ├── CvoPixelSelector.hpp │ ├── CvoPoint.hpp │ ├── CvoPointCloud.hpp │ ├── IRLS_State.hpp │ ├── ImageRGBD.hpp │ ├── ImageStereo.hpp │ ├── LeGoLoamPointSelection.hpp │ ├── LidarPointSelector.hpp │ ├── LidarPointType.hpp │ ├── LoamScanRegistration.hpp │ ├── PointSegmentedDistribution.hpp │ ├── RawImage.hpp │ ├── StaticStereo.hpp │ ├── Vector3.h │ ├── VoxelMap.hpp │ ├── VoxelMap_impl.hpp │ ├── conversions.hpp │ ├── data_type.hpp │ ├── debug_visualization.hpp │ ├── math_utils.h │ ├── pcd_generator.hpp │ └── time_utils.h ├── results ├── TUM_featureless.png ├── cvo_geometric_img_gpu0_mar21 │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── cvo_geometric_img_gpu0 │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ └── errors │ │ │ ├── 00.txt │ │ │ ├── 01.txt │ │ │ ├── 02.txt │ │ │ ├── 03.txt │ │ │ ├── 04.txt │ │ │ ├── 05.txt │ │ │ ├── 06.txt │ │ │ ├── 07.txt │ │ │ ├── 08.txt │ │ │ ├── 09.txt │ │ │ └── 10.txt │ └── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt ├── cvo_geometric_img_gpu0_oct23 │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── cvo_geometric_params_img_gpu0.yaml │ ├── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt │ ├── plot_error │ │ ├── 00_avg_rl.txt │ │ ├── 00_avg_rs.txt │ │ ├── 00_avg_tl.txt │ │ ├── 00_avg_ts.txt │ │ ├── 00_rl.txt │ │ ├── 00_rs.txt │ │ ├── 00_tl.txt │ │ ├── 00_ts.txt │ │ ├── 01_avg_rl.txt │ │ ├── 01_avg_rs.txt │ │ ├── 01_avg_tl.txt │ │ ├── 01_avg_ts.txt │ │ ├── 01_rl.txt │ │ ├── 01_rs.txt │ │ ├── 01_tl.txt │ │ ├── 01_ts.txt │ │ ├── 02_avg_rl.txt │ │ ├── 02_avg_rs.txt │ │ ├── 02_avg_tl.txt │ │ ├── 02_avg_ts.txt │ │ ├── 02_rl.txt │ │ ├── 02_rs.txt │ │ ├── 02_tl.txt │ │ ├── 02_ts.txt │ │ ├── 03_avg_rl.txt │ │ ├── 03_avg_rs.txt │ │ ├── 03_avg_tl.txt │ │ ├── 03_avg_ts.txt │ │ ├── 03_rl.txt │ │ ├── 03_rs.txt │ │ ├── 03_tl.txt │ │ ├── 03_ts.txt │ │ ├── 04_avg_rl.txt │ │ ├── 04_avg_rs.txt │ │ ├── 04_avg_tl.txt │ │ ├── 04_avg_ts.txt │ │ ├── 04_rl.txt │ │ ├── 04_rs.txt │ │ ├── 04_tl.txt │ │ ├── 04_ts.txt │ │ ├── 05_avg_rl.txt │ │ ├── 05_avg_rs.txt │ │ ├── 05_avg_tl.txt │ │ ├── 05_avg_ts.txt │ │ ├── 05_rl.txt │ │ ├── 05_rs.txt │ │ ├── 05_tl.txt │ │ ├── 05_ts.txt │ │ ├── 06_avg_rl.txt │ │ ├── 06_avg_rs.txt │ │ ├── 06_avg_tl.txt │ │ ├── 06_avg_ts.txt │ │ ├── 06_rl.txt │ │ ├── 06_rs.txt │ │ ├── 06_tl.txt │ │ ├── 06_ts.txt │ │ ├── 07_avg_rl.txt │ │ ├── 07_avg_rs.txt │ │ ├── 07_avg_tl.txt │ │ ├── 07_avg_ts.txt │ │ ├── 07_rl.txt │ │ ├── 07_rs.txt │ │ ├── 07_tl.txt │ │ ├── 07_ts.txt │ │ ├── 08_avg_rl.txt │ │ ├── 08_avg_rs.txt │ │ ├── 08_avg_tl.txt │ │ ├── 08_avg_ts.txt │ │ ├── 08_rl.txt │ │ ├── 08_rs.txt │ │ ├── 08_tl.txt │ │ ├── 08_ts.txt │ │ ├── 09_avg_rl.txt │ │ ├── 09_avg_rs.txt │ │ ├── 09_avg_tl.txt │ │ ├── 09_avg_ts.txt │ │ ├── 09_rl.txt │ │ ├── 09_rs.txt │ │ ├── 09_tl.txt │ │ ├── 09_ts.txt │ │ ├── 10_avg_rl.txt │ │ ├── 10_avg_rs.txt │ │ ├── 10_avg_tl.txt │ │ ├── 10_avg_ts.txt │ │ ├── 10_rl.txt │ │ ├── 10_rs.txt │ │ ├── 10_tl.txt │ │ └── 10_ts.txt │ └── stats │ │ ├── 00_avg.txt │ │ ├── 01_avg.txt │ │ ├── 02_avg.txt │ │ ├── 03_avg.txt │ │ ├── 04_avg.txt │ │ ├── 05_avg.txt │ │ ├── 06_avg.txt │ │ ├── 07_avg.txt │ │ ├── 08_avg.txt │ │ ├── 09_avg.txt │ │ └── 10_avg.txt ├── cvo_img_semantic_oct26_best │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── cvo_semantic_params_img_gpu0.yaml │ ├── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt │ ├── plot_error │ │ ├── 00_avg_rl.txt │ │ ├── 00_avg_rs.txt │ │ ├── 00_avg_tl.txt │ │ ├── 00_avg_ts.txt │ │ ├── 00_rl.txt │ │ ├── 00_rs.txt │ │ ├── 00_tl.txt │ │ ├── 00_ts.txt │ │ ├── 01_avg_rl.txt │ │ ├── 01_avg_rs.txt │ │ ├── 01_avg_tl.txt │ │ ├── 01_avg_ts.txt │ │ ├── 01_rl.txt │ │ ├── 01_rs.txt │ │ ├── 01_tl.txt │ │ ├── 01_ts.txt │ │ ├── 02_avg_rl.txt │ │ ├── 02_avg_rs.txt │ │ ├── 02_avg_tl.txt │ │ ├── 02_avg_ts.txt │ │ ├── 02_rl.txt │ │ ├── 02_rs.txt │ │ ├── 02_tl.txt │ │ ├── 02_ts.txt │ │ ├── 03_avg_rl.txt │ │ ├── 03_avg_rs.txt │ │ ├── 03_avg_tl.txt │ │ ├── 03_avg_ts.txt │ │ ├── 03_rl.txt │ │ ├── 03_rs.txt │ │ ├── 03_tl.txt │ │ ├── 03_ts.txt │ │ ├── 04_avg_rl.txt │ │ ├── 04_avg_rs.txt │ │ ├── 04_avg_tl.txt │ │ ├── 04_avg_ts.txt │ │ ├── 04_rl.txt │ │ ├── 04_rs.txt │ │ ├── 04_tl.txt │ │ ├── 04_ts.txt │ │ ├── 05_avg_rl.txt │ │ ├── 05_avg_rs.txt │ │ ├── 05_avg_tl.txt │ │ ├── 05_avg_ts.txt │ │ ├── 05_rl.txt │ │ ├── 05_rs.txt │ │ ├── 05_tl.txt │ │ ├── 05_ts.txt │ │ ├── 06_avg_rl.txt │ │ ├── 06_avg_rs.txt │ │ ├── 06_avg_tl.txt │ │ ├── 06_avg_ts.txt │ │ ├── 06_rl.txt │ │ ├── 06_rs.txt │ │ ├── 06_tl.txt │ │ ├── 06_ts.txt │ │ ├── 07_avg_rl.txt │ │ ├── 07_avg_rs.txt │ │ ├── 07_avg_tl.txt │ │ ├── 07_avg_ts.txt │ │ ├── 07_rl.txt │ │ ├── 07_rs.txt │ │ ├── 07_tl.txt │ │ ├── 07_ts.txt │ │ ├── 08_avg_rl.txt │ │ ├── 08_avg_rs.txt │ │ ├── 08_avg_tl.txt │ │ ├── 08_avg_ts.txt │ │ ├── 08_rl.txt │ │ ├── 08_rs.txt │ │ ├── 08_tl.txt │ │ ├── 08_ts.txt │ │ ├── 09_avg_rl.txt │ │ ├── 09_avg_rs.txt │ │ ├── 09_avg_tl.txt │ │ ├── 09_avg_ts.txt │ │ ├── 09_rl.txt │ │ ├── 09_rs.txt │ │ ├── 09_tl.txt │ │ ├── 09_ts.txt │ │ ├── 10_avg_rl.txt │ │ ├── 10_avg_rs.txt │ │ ├── 10_avg_tl.txt │ │ ├── 10_avg_ts.txt │ │ ├── 10_rl.txt │ │ ├── 10_rs.txt │ │ ├── 10_tl.txt │ │ └── 10_ts.txt │ └── stats │ │ ├── 00_avg.txt │ │ ├── 01_avg.txt │ │ ├── 02_avg.txt │ │ ├── 03_avg.txt │ │ ├── 04_avg.txt │ │ ├── 05_avg.txt │ │ ├── 06_avg.txt │ │ ├── 07_avg.txt │ │ ├── 08_avg.txt │ │ ├── 09_avg.txt │ │ └── 10_avg.txt ├── cvo_intensity_img_gpu0_oct25_best │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt │ ├── plot_error │ │ ├── 00_avg_rl.txt │ │ ├── 00_avg_rs.txt │ │ ├── 00_avg_tl.txt │ │ ├── 00_avg_ts.txt │ │ ├── 00_rl.txt │ │ ├── 00_rs.txt │ │ ├── 00_tl.txt │ │ ├── 00_ts.txt │ │ ├── 01_avg_rl.txt │ │ ├── 01_avg_rs.txt │ │ ├── 01_avg_tl.txt │ │ ├── 01_avg_ts.txt │ │ ├── 01_rl.txt │ │ ├── 01_rs.txt │ │ ├── 01_tl.txt │ │ ├── 01_ts.txt │ │ ├── 02_avg_rl.txt │ │ ├── 02_avg_rs.txt │ │ ├── 02_avg_tl.txt │ │ ├── 02_avg_ts.txt │ │ ├── 02_rl.txt │ │ ├── 02_rs.txt │ │ ├── 02_tl.txt │ │ ├── 02_ts.txt │ │ ├── 03_avg_rl.txt │ │ ├── 03_avg_rs.txt │ │ ├── 03_avg_tl.txt │ │ ├── 03_avg_ts.txt │ │ ├── 03_rl.txt │ │ ├── 03_rs.txt │ │ ├── 03_tl.txt │ │ ├── 03_ts.txt │ │ ├── 04_avg_rl.txt │ │ ├── 04_avg_rs.txt │ │ ├── 04_avg_tl.txt │ │ ├── 04_avg_ts.txt │ │ ├── 04_rl.txt │ │ ├── 04_rs.txt │ │ ├── 04_tl.txt │ │ ├── 04_ts.txt │ │ ├── 05_avg_rl.txt │ │ ├── 05_avg_rs.txt │ │ ├── 05_avg_tl.txt │ │ ├── 05_avg_ts.txt │ │ ├── 05_rl.txt │ │ ├── 05_rs.txt │ │ ├── 05_tl.txt │ │ ├── 05_ts.txt │ │ ├── 06_avg_rl.txt │ │ ├── 06_avg_rs.txt │ │ ├── 06_avg_tl.txt │ │ ├── 06_avg_ts.txt │ │ ├── 06_rl.txt │ │ ├── 06_rs.txt │ │ ├── 06_tl.txt │ │ ├── 06_ts.txt │ │ ├── 07_avg_rl.txt │ │ ├── 07_avg_rs.txt │ │ ├── 07_avg_tl.txt │ │ ├── 07_avg_ts.txt │ │ ├── 07_rl.txt │ │ ├── 07_rs.txt │ │ ├── 07_tl.txt │ │ ├── 07_ts.txt │ │ ├── 08_avg_rl.txt │ │ ├── 08_avg_rs.txt │ │ ├── 08_avg_tl.txt │ │ ├── 08_avg_ts.txt │ │ ├── 08_rl.txt │ │ ├── 08_rs.txt │ │ ├── 08_tl.txt │ │ ├── 08_ts.txt │ │ ├── 09_avg_rl.txt │ │ ├── 09_avg_rs.txt │ │ ├── 09_avg_tl.txt │ │ ├── 09_avg_ts.txt │ │ ├── 09_rl.txt │ │ ├── 09_rs.txt │ │ ├── 09_tl.txt │ │ ├── 09_ts.txt │ │ ├── 10_avg_rl.txt │ │ ├── 10_avg_rs.txt │ │ ├── 10_avg_tl.txt │ │ ├── 10_avg_ts.txt │ │ ├── 10_rl.txt │ │ ├── 10_rs.txt │ │ ├── 10_tl.txt │ │ └── 10_ts.txt │ └── stats │ │ ├── 00_avg.txt │ │ ├── 01_avg.txt │ │ ├── 02_avg.txt │ │ ├── 03_avg.txt │ │ ├── 04_avg.txt │ │ ├── 05_avg.txt │ │ ├── 06_avg.txt │ │ ├── 07_avg.txt │ │ ├── 08_avg.txt │ │ ├── 09_avg.txt │ │ └── 10_avg.txt ├── cvo_semantic_img_gpu0_mar28 │ ├── 00.txt │ ├── 01.txt │ ├── 02.txt │ ├── 03.txt │ ├── 04.txt │ ├── 05.txt │ ├── 06.txt │ ├── 07.txt │ ├── 08.txt │ ├── 09.txt │ ├── 10.txt │ ├── cvo_semantic_params_img_gpu0.yaml │ └── errors │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ └── 10.txt ├── kitti_seq03.png └── stacked_pointcloud.png ├── scripts ├── .cvo_intensity_img_test.bash.swp ├── .single_param_test.bash.swp ├── acvo_intensity_test.bash ├── acvo_semantic_test.bash ├── batch_geometric_test.bash ├── batch_rename.py ├── cvo_covis_tartan.bash ├── cvo_geoemtric_cov.bash ├── cvo_geoemtric_loam.bash ├── cvo_geoemtric_normal.bash ├── cvo_geoemtric_range_ell.bash ├── cvo_geoemtric_test.bash ├── cvo_geometric_img.bash ├── cvo_geometric_img_gpu0.bash ├── cvo_geometric_img_gpu1.bash ├── cvo_indicator_test.bash ├── cvo_indicator_test_gpu1.bash ├── cvo_intensity_img_gpu0.bash ├── cvo_intensity_img_gpu1.bash ├── cvo_intensity_img_test.bash ├── cvo_intensity_img_test2.bash ├── cvo_intensity_loam.bash ├── cvo_intensity_lyft.bash ├── cvo_intensity_rgbd_tartan.bash ├── cvo_intensity_test.bash ├── cvo_irls_kitti.bash ├── cvo_irls_tartan.bash ├── cvo_irls_tum.bash ├── cvo_pcd_test.bash ├── cvo_rgbd.bash ├── cvo_semantic_img_gpu0.bash ├── cvo_semantic_img_oct26_gpu0.bash ├── cvo_semantic_img_oct26_gpu1.bash ├── cvo_semantic_img_test.bash ├── cvo_semantic_img_test_gpu0.bash ├── cvo_semantic_img_test_gpu1.bash ├── cvo_semantic_img_test_oct13_gpu0.bash ├── cvo_semantic_img_test_oct14.bash ├── cvo_semantic_img_test_oct14_gpu0.bash ├── cvo_semantic_img_test_oct14_gpu1.bash ├── cvo_semantic_img_txt.bash ├── cvo_semantic_loam.bash ├── cvo_semantic_test.bash ├── cvo_tartan_test.bash ├── gen_relative_pose.py ├── geometric_test.bash ├── init_vs_end_scatter_plot.py ├── kitti_depth_filter.bash ├── kitti_geometric_stereo.bash ├── kitti_intensity_stereo.bash ├── multiple_test.bash ├── plot_accum_ip.py ├── plot_ell_dist.py ├── plot_ell_ip.py ├── plot_ell_ip.txt ├── plot_nonzero_trend.py ├── plot_velocity_distance_error.m ├── print_relative_between_two.py ├── single_param_test.bash ├── stack_pcd_test.bash ├── stereo_semantic_test.bash ├── trajectory_playback.bash ├── velocity_length_error_plot.py ├── xyz2plot.py └── xyzq2kitti.py ├── src ├── cvo │ ├── ACvo.cpp │ ├── AdaptiveCvoGPU.cu │ ├── Cvo.cpp │ ├── CvoFrame.cpp │ ├── CvoFrameGPU.cu │ ├── CvoGPU.cpp │ ├── CvoGPU.cu │ ├── CvoGPU_impl.cu │ ├── CvoGPU_old.cu │ ├── CvoState.cu │ ├── IRLS.cpp │ ├── IRLS_State_CPU.cpp │ ├── IRLS_State_GPU.cpp │ ├── IRLS_State_GPU.cu │ ├── LieGroup.cpp │ └── SparseKernelMat.cu ├── dataset_handler │ ├── KittiHandler.cpp │ ├── LyftHandler.cpp │ ├── TartanAirHandler.cpp │ └── TumHandler.cpp ├── experiments │ ├── cu_kd_tree_test.cu │ ├── cuda_performance_tune.cu │ ├── gicp_align_two.cpp │ ├── main_acvo_gpu_align.cpp │ ├── main_acvo_gpu_align_raw_image.cpp │ ├── main_acvo_gpu_lidar_align.cpp │ ├── main_acvo_semantic_gpu_align_raw_image.cpp │ ├── main_covisMap_test.cpp │ ├── main_cvo_align.cpp │ ├── main_cvo_align_f2f.cpp │ ├── main_cvo_gpu_align.cpp │ ├── main_cvo_gpu_align_raw_image.cpp │ ├── main_cvo_gpu_align_rgbd.cpp │ ├── main_cvo_gpu_align_semantic_image.cpp │ ├── main_cvo_gpu_align_tartan.cpp │ ├── main_cvo_gpu_align_two_color_pcd.cpp │ ├── main_cvo_gpu_align_two_pcd.cpp │ ├── main_cvo_gpu_lidar_lyft.cpp │ ├── main_cvo_gpu_lidar_raw.cpp │ ├── main_cvo_gpu_lidar_raw_covariance.cpp │ ├── main_cvo_gpu_lidar_raw_geometric.cpp │ ├── main_cvo_gpu_lidar_raw_intensity.cpp │ ├── main_cvo_gpu_lidar_raw_semantic.cpp │ ├── main_cvo_gpu_pcd.cpp │ ├── main_cvo_gpu_single_image_test.cpp │ ├── main_cvo_semantic_gpu_align_raw_image.cpp │ ├── main_cvo_semantic_gpu_align_txt.cpp │ ├── main_depth_filtering.cpp │ ├── main_ellipse_viewer.cpp │ ├── main_evaluate_indicator.cpp │ ├── main_indicator_in_sequence.cpp │ ├── main_kitti_stereo_color.cpp │ ├── main_kitti_stereo_odom_file.cpp │ ├── main_kitti_stereo_semantic.cpp │ ├── main_local_mapping.cpp │ ├── main_map2map_batch.cpp │ ├── main_multi_frame_irls_bunny_random.cpp │ ├── main_multi_frame_irls_kitti.cpp │ ├── main_multi_frame_irls_pcd.cpp │ ├── main_multi_frame_irls_tartan.cpp │ ├── main_multi_frame_irls_translation_only_tartan.cpp │ ├── main_multi_frame_irls_tum.cpp │ ├── main_semantic_acvo_gpu_lidar_align_raw.cpp │ ├── main_stack_pcd_viewer.cpp │ └── main_traj_playback.cpp ├── graph_optimizer │ ├── Frame.cpp │ └── PoseGraph.cpp ├── mapping │ ├── bkiblock.cpp │ ├── bkioctomap.cpp │ ├── bkioctree.cpp │ ├── bkioctree_node.cpp │ └── point3f.cpp ├── pcd_generator.cpp ├── tests │ └── main_cvo_gpu_align.cpp └── utils │ ├── CvoPixelSelector.cpp │ ├── CvoPoint.cpp │ ├── CvoPointCloud.cpp │ ├── CvoPointCovariance.cu │ ├── ImageRGBD.hpp │ ├── ImageStereo.cpp │ ├── LeGoLoamPointSelection.cpp │ ├── LidarPointSelector.cpp │ ├── LoamScanRegistration.cpp │ ├── RawImage.cpp │ ├── StaticStereo.cpp │ ├── VoxelMap_CvoPoint.cpp │ └── VoxelMap_pcl.cpp └── thirdparty ├── cnpy ├── cnpy.cpp └── cnpy.h ├── cugicp ├── .clang-format ├── .gitignore ├── common │ ├── gpuutil.h │ ├── inverse.h │ └── local_parameterization_se3.h ├── cukdtree │ ├── CMakeLists.txt │ ├── cukdtree.cuh │ ├── cukdtree.h │ └── nth_element.h ├── cupointcloud │ ├── CMakeLists.txt │ ├── cupointcloud.h │ └── point_types.h └── viewer │ ├── CMakeLists.txt │ ├── color_handler.cc │ ├── color_handler.h │ ├── viewer.cc │ └── viewer.h └── libelas └── libelas ├── descriptor.cpp ├── descriptor.h ├── elas.cpp ├── elas.h ├── filter.cpp ├── filter.h ├── image.h ├── matrix.cpp ├── matrix.h ├── timer.h ├── triangle.cpp └── triangle.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/README.md -------------------------------------------------------------------------------- /UnifiedCvoConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/UnifiedCvoConfig.cmake.in -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/00.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/01.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/02.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/03.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/04.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/05.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/06.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/07.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/08.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/09.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/10.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/00.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/01.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/02.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/03.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/04.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/05.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/06.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/07.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/08.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/09.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/errors/10.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/00_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/00_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/00_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/00_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/00_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/00_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/00_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/00_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/01_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/01_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/01_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/01_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/01_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/01_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/01_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/01_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/02_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/02_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/02_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/02_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/02_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/02_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/02_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/02_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/03_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/03_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/03_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/03_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/03_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/03_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/03_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/03_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/04_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/04_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/04_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/04_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/04_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/04_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/04_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/04_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/05_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/05_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/05_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/05_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/05_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/05_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/05_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/05_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/06_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/06_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/06_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/06_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/06_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/06_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/06_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/06_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/07_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/07_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/07_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/07_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/07_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/07_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/07_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/07_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/08_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/08_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/08_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/08_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/08_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/08_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/08_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/08_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/09_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/09_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/09_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/09_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/plot_error/09_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_gicp/plot_error/09_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats.txt: -------------------------------------------------------------------------------- 1 | 0.026588 0.000165 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.095337 0.000579 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.439256 0.000594 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.119653 0.000381 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.558619 0.000892 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.405066 0.000495 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.125138 0.000602 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.129095 0.000862 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.074744 0.000798 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.118011 0.000422 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.115750 0.000469 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_gicp/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.119766 0.000853 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/00.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/01.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/02.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/03.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/04.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/05.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/06.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/07.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/08.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/09.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/10.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/11.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/TIME.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME00.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME01.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME02.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME03.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME04.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME05.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME06.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME07.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME08.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME09.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/TIME10.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/00.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/01.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/02.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/03.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/04.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/05.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/06.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/07.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/08.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/09.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/errors/10.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/00_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/00_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/00_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/00_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/00_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/00_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/00_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/00_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/01_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/01_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/01_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/01_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/01_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/01_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/01_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/01_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/02_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/02_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/02_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/02_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/02_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/02_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/02_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/02_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/03_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/03_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/03_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/03_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/03_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/03_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/03_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/03_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/04_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/04_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/04_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/04_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/04_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/04_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/04_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/04_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/05_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/05_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/05_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/05_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/05_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/05_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/05_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/05_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/06_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/06_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/06_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/06_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/06_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/06_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/06_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/06_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/07_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/07_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/07_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/07_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/07_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/07_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/07_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/07_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/08_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/08_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/08_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/08_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/08_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/08_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/08_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/08_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/09_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/09_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/09_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/09_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/09_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/09_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/09_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/09_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/10_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/10_rl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/10_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/10_rs.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/10_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/10_tl.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/plot_error/10_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_mc/plot_error/10_ts.txt -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats.txt: -------------------------------------------------------------------------------- 1 | 0.031646 0.000194 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.195217 0.001670 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.208525 0.000540 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.208025 0.000868 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.277569 0.002047 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.521145 0.001400 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.158426 0.001163 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.177501 0.001326 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.173467 0.001716 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.201813 0.001530 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.194667 0.001245 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_mc/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.252160 0.001780 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/00.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/01.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/02.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/03.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/04.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/05.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/06.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/07.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/08.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/09.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/10.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/00.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/01.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/02.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/03.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/04.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/05.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/06.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/07.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/08.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/09.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/lidar/results_ndt/errors/10.txt -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats.txt: -------------------------------------------------------------------------------- 1 | 0.050725 0.000249 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.070795 0.000637 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.153130 0.000441 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.053909 0.000375 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.064003 0.000893 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.049973 0.000557 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.074521 0.000697 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.135138 0.000974 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.076891 0.001047 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.070604 0.000605 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.054055 0.000400 2 | -------------------------------------------------------------------------------- /baselines/lidar/results_ndt/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.070201 0.000592 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/00.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/01.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/02.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/03.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/04.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/05.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/06.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/07.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/08.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/09.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/10.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/00.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/01.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/02.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/03.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/04.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/05.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/06.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/07.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/08.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/09.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/errors/10.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/00_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/00_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/01_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/01_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/02_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/02_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/03_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/03_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/04_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/04_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/05_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/05_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/06_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/06_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/07_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/07_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/08_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/08_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/09_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/09_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/plot_error/10_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/gicp/plot_error/10_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.095337 0.000579 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.439256 0.000594 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.119653 0.000381 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.558619 0.000892 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.405066 0.000495 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.125138 0.000602 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.129095 0.000862 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.074744 0.000798 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.118011 0.000422 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.115750 0.000469 2 | -------------------------------------------------------------------------------- /baselines/stereo/gicp/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.119766 0.000853 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/00.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/01.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/02.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/03.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/04.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/05.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/06.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/07.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/08.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/09.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/mc_icp/errors/10.txt -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.102553 0.000961 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.530808 0.000924 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.089705 0.000528 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.184269 0.001575 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.072742 0.000938 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.103657 0.001010 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.159178 0.001151 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.131040 0.001671 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.083679 0.000811 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.094086 0.000617 2 | -------------------------------------------------------------------------------- /baselines/stereo/mc_icp/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.148475 0.000940 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/00.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/01.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/02.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/03.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/04.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/05.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/06.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/07.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/08.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/09.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/10.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/00.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/01.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/02.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/03.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/04.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/05.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/06.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/07.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/08.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/09.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/errors/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/errors/10.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/00_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/00_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/01_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/01_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/02_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/02_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/03_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/03_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/04_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/04_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/05_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/05_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/06_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/06_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/07_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/07_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/08_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/08_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/09_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/09_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_avg_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_avg_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_avg_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_avg_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_avg_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_avg_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_avg_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_avg_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_rl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_rl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_rs.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_tl.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/plot_error/10_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/baselines/stereo/ndt/plot_error/10_ts.txt -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.070795 0.000637 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.153130 0.000441 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.053909 0.000375 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.064003 0.000893 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.049973 0.000557 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.074521 0.000697 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.135138 0.000974 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.076891 0.001047 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.070604 0.000605 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.054055 0.000400 2 | -------------------------------------------------------------------------------- /baselines/stereo/ndt/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.070201 0.000592 2 | -------------------------------------------------------------------------------- /cmake/FindSuiteParse.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cmake/FindSuiteParse.cmake -------------------------------------------------------------------------------- /cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/cvoConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cmake/cvoConfig.cmake.in -------------------------------------------------------------------------------- /cp_results.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cp_results.bash -------------------------------------------------------------------------------- /ctags_gen.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ctags_gen.bash -------------------------------------------------------------------------------- /cvo_params/cvo_geometric_params_gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_geometric_params_gpu.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_geometric_params_img.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_geometric_params_img.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_geometric_params_img_gpu0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_geometric_params_img_gpu0.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_geometric_params_random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_geometric_params_random.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_indoor_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_indoor_params.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_intensity_params_gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_intensity_params_gpu.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_intensity_params_img.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_intensity_params_img.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_intensity_params_img_gpu0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_intensity_params_img_gpu0.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_intensity_params_irls_pcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_intensity_params_irls_pcd.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_intensity_params_irls_tum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_intensity_params_irls_tum.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_outdoor_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_outdoor_params.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_rgbd_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_rgbd_params.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_semantic_params_img_gpu0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_semantic_params_img_gpu0.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_semantic_params_img_oct13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_semantic_params_img_oct13.yaml -------------------------------------------------------------------------------- /cvo_params/cvo_semantic_params_img_oct14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/cvo_params/cvo_semantic_params_img_oct14.yaml -------------------------------------------------------------------------------- /demo_data/after_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/demo_data/after_align.png -------------------------------------------------------------------------------- /demo_data/before_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/demo_data/before_align.png -------------------------------------------------------------------------------- /demo_data/source.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/demo_data/source.pcd -------------------------------------------------------------------------------- /demo_data/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/demo_data/source.png -------------------------------------------------------------------------------- /demo_data/target.pcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/demo_data/target.pcd -------------------------------------------------------------------------------- /demo_data/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/demo_data/target.png -------------------------------------------------------------------------------- /devkit/cpp/evaluate_odometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/cpp/evaluate_odometry.cpp -------------------------------------------------------------------------------- /devkit/cpp/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/cpp/mail.h -------------------------------------------------------------------------------- /devkit/cpp/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/cpp/matrix.cpp -------------------------------------------------------------------------------- /devkit/cpp/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/cpp/matrix.h -------------------------------------------------------------------------------- /devkit/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devkit/evaluation/addToConfusionMatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/evaluation/addToConfusionMatrix.c -------------------------------------------------------------------------------- /devkit/evaluation/addToConfusionMatrix.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/evaluation/addToConfusionMatrix.pyx -------------------------------------------------------------------------------- /devkit/evaluation/addToConfusionMatrix_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/evaluation/addToConfusionMatrix_impl.c -------------------------------------------------------------------------------- /devkit/evaluation/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/evaluation/instance.py -------------------------------------------------------------------------------- /devkit/evaluation/instances2dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/evaluation/instances2dict.py -------------------------------------------------------------------------------- /devkit/evaluation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/evaluation/setup.py -------------------------------------------------------------------------------- /devkit/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devkit/helpers/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/helpers/annotation.py -------------------------------------------------------------------------------- /devkit/helpers/csHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/helpers/csHelpers.py -------------------------------------------------------------------------------- /devkit/helpers/kitti_instance_size_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/helpers/kitti_instance_size_average.py -------------------------------------------------------------------------------- /devkit/helpers/kitti_to_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/helpers/kitti_to_cityscapes.py -------------------------------------------------------------------------------- /devkit/helpers/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/helpers/labels.py -------------------------------------------------------------------------------- /devkit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/devkit/readme.txt -------------------------------------------------------------------------------- /eval_batch.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/eval_batch.bash -------------------------------------------------------------------------------- /experiment/plot_inner_product.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/experiment/plot_inner_product.m -------------------------------------------------------------------------------- /experiment/times_relative_tf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/experiment/times_relative_tf.m -------------------------------------------------------------------------------- /graph_defs/graph_tum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/graph_defs/graph_tum.txt -------------------------------------------------------------------------------- /graph_defs/graph_tum2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/graph_defs/graph_tum2.txt -------------------------------------------------------------------------------- /ground_truth/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/00.txt -------------------------------------------------------------------------------- /ground_truth/00/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/00/00.txt -------------------------------------------------------------------------------- /ground_truth/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/01.txt -------------------------------------------------------------------------------- /ground_truth/01/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/01/01.txt -------------------------------------------------------------------------------- /ground_truth/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/02.txt -------------------------------------------------------------------------------- /ground_truth/02/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/02/02.txt -------------------------------------------------------------------------------- /ground_truth/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/03.txt -------------------------------------------------------------------------------- /ground_truth/03/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/03/03.txt -------------------------------------------------------------------------------- /ground_truth/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/04.txt -------------------------------------------------------------------------------- /ground_truth/04/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/04/04.txt -------------------------------------------------------------------------------- /ground_truth/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/05.txt -------------------------------------------------------------------------------- /ground_truth/05/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/05/05.txt -------------------------------------------------------------------------------- /ground_truth/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/06.txt -------------------------------------------------------------------------------- /ground_truth/06/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/06/06.txt -------------------------------------------------------------------------------- /ground_truth/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/07.txt -------------------------------------------------------------------------------- /ground_truth/07/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/07/07.txt -------------------------------------------------------------------------------- /ground_truth/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/08.txt -------------------------------------------------------------------------------- /ground_truth/08/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/08/08.txt -------------------------------------------------------------------------------- /ground_truth/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/09.txt -------------------------------------------------------------------------------- /ground_truth/09/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/09/09.txt -------------------------------------------------------------------------------- /ground_truth/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/10.txt -------------------------------------------------------------------------------- /ground_truth/10/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/ground_truth/10/10.txt -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/ACvo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/ACvo.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/AdaptiveCvoGPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/AdaptiveCvoGPU.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/AdaptiveCvoGPU_impl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/AdaptiveCvoGPU_impl.cuh -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/Association.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/Association.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/Cvo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/Cvo.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/CvoFrame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/CvoFrame.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/CvoFrameGPU.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/CvoFrameGPU.cuh -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/CvoFrameGPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/CvoFrameGPU.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/CvoGPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/CvoGPU.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/CvoGPU_impl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/CvoGPU_impl.cuh -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/CvoParams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/CvoParams.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/CvoState.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/CvoState.cuh -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/IRLS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/IRLS.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/IRLS_Cost_CPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/IRLS_Cost_CPU.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/IRLS_State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/IRLS_State.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/IRLS_State_CPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/IRLS_State_CPU.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/IRLS_State_GPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/IRLS_State_GPU.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/LieGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/LieGroup.h -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/SparseKernelMat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/SparseKernelMat.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/gpu_utils.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/gpu_utils.cuh -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/main.cpp -------------------------------------------------------------------------------- /include/UnifiedCvo/cvo/nanoflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/cvo/nanoflann.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/graph_optimizer/Frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/graph_optimizer/Frame.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/bki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/bki.h -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/bkiblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/bkiblock.h -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/bkioctomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/bkioctomap.h -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/bkioctree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/bkioctree.h -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/bkioctree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/bkioctree_node.h -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/markerarray_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/markerarray_pub.h -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/point3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/point3f.h -------------------------------------------------------------------------------- /include/UnifiedCvo/mapping/rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/mapping/rtree.h -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/Angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/Angle.h -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/Calibration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/Calibration.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/CircularBuffer.h -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/CvoPixelSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/CvoPixelSelector.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/CvoPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/CvoPoint.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/CvoPointCloud.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/CvoPointCloud.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/IRLS_State.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/IRLS_State.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/ImageRGBD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/ImageRGBD.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/ImageStereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/ImageStereo.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/LidarPointSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/LidarPointSelector.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/LidarPointType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/LidarPointType.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/RawImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/RawImage.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/StaticStereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/StaticStereo.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/Vector3.h -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/VoxelMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/VoxelMap.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/VoxelMap_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/VoxelMap_impl.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/conversions.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/data_type.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/math_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/math_utils.h -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/pcd_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/pcd_generator.hpp -------------------------------------------------------------------------------- /include/UnifiedCvo/utils/time_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/include/UnifiedCvo/utils/time_utils.h -------------------------------------------------------------------------------- /results/TUM_featureless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/TUM_featureless.png -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/00.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/01.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/02.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/03.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/04.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/05.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/06.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/07.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/08.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/09.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_mar21/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_mar21/10.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/00.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/01.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/02.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/03.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/04.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/05.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/06.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/07.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/08.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/09.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_geometric_img_gpu0_oct23/10.txt -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.040591 0.000302 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.070360 0.000497 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.058590 0.000384 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.038424 0.000348 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.050787 0.000625 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.034257 0.000359 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.029951 0.000264 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.052314 0.000776 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.044018 0.000328 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.046660 0.000323 2 | -------------------------------------------------------------------------------- /results/cvo_geometric_img_gpu0_oct23/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.034182 0.000316 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/00.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/01.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/02.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/03.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/04.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/05.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/06.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/07.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/08.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/09.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_img_semantic_oct26_best/10.txt -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.032220 0.000220 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.039675 0.000230 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.049580 0.000289 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.039436 0.000313 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.038433 0.000397 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.029538 0.000263 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.032800 0.000182 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.023478 0.000301 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.036460 0.000255 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.043212 0.000259 2 | -------------------------------------------------------------------------------- /results/cvo_img_semantic_oct26_best/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.035925 0.000264 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/00_avg.txt: -------------------------------------------------------------------------------- 1 | 0.031981 0.000218 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/01_avg.txt: -------------------------------------------------------------------------------- 1 | 0.044153 0.000275 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/02_avg.txt: -------------------------------------------------------------------------------- 1 | 0.049972 0.000292 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/03_avg.txt: -------------------------------------------------------------------------------- 1 | 0.039394 0.000318 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/04_avg.txt: -------------------------------------------------------------------------------- 1 | 0.038597 0.000401 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/05_avg.txt: -------------------------------------------------------------------------------- 1 | 0.029446 0.000265 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/06_avg.txt: -------------------------------------------------------------------------------- 1 | 0.031842 0.000180 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/07_avg.txt: -------------------------------------------------------------------------------- 1 | 0.023238 0.000306 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/08_avg.txt: -------------------------------------------------------------------------------- 1 | 0.036511 0.000256 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/09_avg.txt: -------------------------------------------------------------------------------- 1 | 0.043897 0.000264 2 | -------------------------------------------------------------------------------- /results/cvo_intensity_img_gpu0_oct25_best/stats/10_avg.txt: -------------------------------------------------------------------------------- 1 | 0.036380 0.000268 2 | -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/00.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/01.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/02.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/03.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/04.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/05.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/06.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/07.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/08.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/09.txt -------------------------------------------------------------------------------- /results/cvo_semantic_img_gpu0_mar28/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/cvo_semantic_img_gpu0_mar28/10.txt -------------------------------------------------------------------------------- /results/kitti_seq03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/kitti_seq03.png -------------------------------------------------------------------------------- /results/stacked_pointcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/results/stacked_pointcloud.png -------------------------------------------------------------------------------- /scripts/.cvo_intensity_img_test.bash.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/.cvo_intensity_img_test.bash.swp -------------------------------------------------------------------------------- /scripts/.single_param_test.bash.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/.single_param_test.bash.swp -------------------------------------------------------------------------------- /scripts/acvo_intensity_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/acvo_intensity_test.bash -------------------------------------------------------------------------------- /scripts/acvo_semantic_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/acvo_semantic_test.bash -------------------------------------------------------------------------------- /scripts/batch_geometric_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/batch_geometric_test.bash -------------------------------------------------------------------------------- /scripts/batch_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/batch_rename.py -------------------------------------------------------------------------------- /scripts/cvo_covis_tartan.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_covis_tartan.bash -------------------------------------------------------------------------------- /scripts/cvo_geoemtric_cov.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geoemtric_cov.bash -------------------------------------------------------------------------------- /scripts/cvo_geoemtric_loam.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geoemtric_loam.bash -------------------------------------------------------------------------------- /scripts/cvo_geoemtric_normal.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geoemtric_normal.bash -------------------------------------------------------------------------------- /scripts/cvo_geoemtric_range_ell.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geoemtric_range_ell.bash -------------------------------------------------------------------------------- /scripts/cvo_geoemtric_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geoemtric_test.bash -------------------------------------------------------------------------------- /scripts/cvo_geometric_img.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geometric_img.bash -------------------------------------------------------------------------------- /scripts/cvo_geometric_img_gpu0.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geometric_img_gpu0.bash -------------------------------------------------------------------------------- /scripts/cvo_geometric_img_gpu1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_geometric_img_gpu1.bash -------------------------------------------------------------------------------- /scripts/cvo_indicator_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_indicator_test.bash -------------------------------------------------------------------------------- /scripts/cvo_indicator_test_gpu1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_indicator_test_gpu1.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_img_gpu0.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_img_gpu0.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_img_gpu1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_img_gpu1.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_img_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_img_test.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_img_test2.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_img_test2.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_loam.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_loam.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_lyft.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_lyft.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_rgbd_tartan.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_rgbd_tartan.bash -------------------------------------------------------------------------------- /scripts/cvo_intensity_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_intensity_test.bash -------------------------------------------------------------------------------- /scripts/cvo_irls_kitti.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_irls_kitti.bash -------------------------------------------------------------------------------- /scripts/cvo_irls_tartan.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_irls_tartan.bash -------------------------------------------------------------------------------- /scripts/cvo_irls_tum.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_irls_tum.bash -------------------------------------------------------------------------------- /scripts/cvo_pcd_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_pcd_test.bash -------------------------------------------------------------------------------- /scripts/cvo_rgbd.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_rgbd.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_gpu0.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_gpu0.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_oct26_gpu0.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_oct26_gpu0.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_oct26_gpu1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_oct26_gpu1.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_test.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_test_gpu0.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_test_gpu0.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_test_gpu1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_test_gpu1.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_test_oct13_gpu0.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_test_oct13_gpu0.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_test_oct14.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_test_oct14.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_test_oct14_gpu0.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_test_oct14_gpu0.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_test_oct14_gpu1.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_test_oct14_gpu1.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_img_txt.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_img_txt.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_loam.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_loam.bash -------------------------------------------------------------------------------- /scripts/cvo_semantic_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_semantic_test.bash -------------------------------------------------------------------------------- /scripts/cvo_tartan_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/cvo_tartan_test.bash -------------------------------------------------------------------------------- /scripts/gen_relative_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/gen_relative_pose.py -------------------------------------------------------------------------------- /scripts/geometric_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/geometric_test.bash -------------------------------------------------------------------------------- /scripts/init_vs_end_scatter_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/init_vs_end_scatter_plot.py -------------------------------------------------------------------------------- /scripts/kitti_depth_filter.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/kitti_depth_filter.bash -------------------------------------------------------------------------------- /scripts/kitti_geometric_stereo.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/kitti_geometric_stereo.bash -------------------------------------------------------------------------------- /scripts/kitti_intensity_stereo.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/kitti_intensity_stereo.bash -------------------------------------------------------------------------------- /scripts/multiple_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/multiple_test.bash -------------------------------------------------------------------------------- /scripts/plot_accum_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/plot_accum_ip.py -------------------------------------------------------------------------------- /scripts/plot_ell_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/plot_ell_dist.py -------------------------------------------------------------------------------- /scripts/plot_ell_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/plot_ell_ip.py -------------------------------------------------------------------------------- /scripts/plot_ell_ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/plot_ell_ip.txt -------------------------------------------------------------------------------- /scripts/plot_nonzero_trend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/plot_nonzero_trend.py -------------------------------------------------------------------------------- /scripts/plot_velocity_distance_error.m: -------------------------------------------------------------------------------- 1 | 2 | 3 | post_str = {} -------------------------------------------------------------------------------- /scripts/print_relative_between_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/print_relative_between_two.py -------------------------------------------------------------------------------- /scripts/single_param_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/single_param_test.bash -------------------------------------------------------------------------------- /scripts/stack_pcd_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/stack_pcd_test.bash -------------------------------------------------------------------------------- /scripts/stereo_semantic_test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/stereo_semantic_test.bash -------------------------------------------------------------------------------- /scripts/trajectory_playback.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/trajectory_playback.bash -------------------------------------------------------------------------------- /scripts/velocity_length_error_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/velocity_length_error_plot.py -------------------------------------------------------------------------------- /scripts/xyz2plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/xyz2plot.py -------------------------------------------------------------------------------- /scripts/xyzq2kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/scripts/xyzq2kitti.py -------------------------------------------------------------------------------- /src/cvo/ACvo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/ACvo.cpp -------------------------------------------------------------------------------- /src/cvo/AdaptiveCvoGPU.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/AdaptiveCvoGPU.cu -------------------------------------------------------------------------------- /src/cvo/Cvo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/Cvo.cpp -------------------------------------------------------------------------------- /src/cvo/CvoFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/CvoFrame.cpp -------------------------------------------------------------------------------- /src/cvo/CvoFrameGPU.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/CvoFrameGPU.cu -------------------------------------------------------------------------------- /src/cvo/CvoGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/CvoGPU.cpp -------------------------------------------------------------------------------- /src/cvo/CvoGPU.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/CvoGPU.cu -------------------------------------------------------------------------------- /src/cvo/CvoGPU_impl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/CvoGPU_impl.cu -------------------------------------------------------------------------------- /src/cvo/CvoGPU_old.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/CvoGPU_old.cu -------------------------------------------------------------------------------- /src/cvo/CvoState.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/CvoState.cu -------------------------------------------------------------------------------- /src/cvo/IRLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/IRLS.cpp -------------------------------------------------------------------------------- /src/cvo/IRLS_State_CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/IRLS_State_CPU.cpp -------------------------------------------------------------------------------- /src/cvo/IRLS_State_GPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/IRLS_State_GPU.cpp -------------------------------------------------------------------------------- /src/cvo/IRLS_State_GPU.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/IRLS_State_GPU.cu -------------------------------------------------------------------------------- /src/cvo/LieGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/LieGroup.cpp -------------------------------------------------------------------------------- /src/cvo/SparseKernelMat.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/cvo/SparseKernelMat.cu -------------------------------------------------------------------------------- /src/dataset_handler/KittiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/dataset_handler/KittiHandler.cpp -------------------------------------------------------------------------------- /src/dataset_handler/LyftHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/dataset_handler/LyftHandler.cpp -------------------------------------------------------------------------------- /src/dataset_handler/TartanAirHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/dataset_handler/TartanAirHandler.cpp -------------------------------------------------------------------------------- /src/dataset_handler/TumHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/dataset_handler/TumHandler.cpp -------------------------------------------------------------------------------- /src/experiments/cu_kd_tree_test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/cu_kd_tree_test.cu -------------------------------------------------------------------------------- /src/experiments/cuda_performance_tune.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/cuda_performance_tune.cu -------------------------------------------------------------------------------- /src/experiments/gicp_align_two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/gicp_align_two.cpp -------------------------------------------------------------------------------- /src/experiments/main_acvo_gpu_align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_acvo_gpu_align.cpp -------------------------------------------------------------------------------- /src/experiments/main_acvo_gpu_lidar_align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_acvo_gpu_lidar_align.cpp -------------------------------------------------------------------------------- /src/experiments/main_covisMap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_covisMap_test.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_align.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_align_f2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_align_f2f.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_gpu_align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_gpu_align.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_gpu_align_rgbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_gpu_align_rgbd.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_gpu_align_tartan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_gpu_align_tartan.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_gpu_align_two_pcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_gpu_align_two_pcd.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_gpu_lidar_lyft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_gpu_lidar_lyft.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_gpu_lidar_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_gpu_lidar_raw.cpp -------------------------------------------------------------------------------- /src/experiments/main_cvo_gpu_pcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_cvo_gpu_pcd.cpp -------------------------------------------------------------------------------- /src/experiments/main_depth_filtering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_depth_filtering.cpp -------------------------------------------------------------------------------- /src/experiments/main_ellipse_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_ellipse_viewer.cpp -------------------------------------------------------------------------------- /src/experiments/main_evaluate_indicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_evaluate_indicator.cpp -------------------------------------------------------------------------------- /src/experiments/main_indicator_in_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_indicator_in_sequence.cpp -------------------------------------------------------------------------------- /src/experiments/main_kitti_stereo_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_kitti_stereo_color.cpp -------------------------------------------------------------------------------- /src/experiments/main_kitti_stereo_odom_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_kitti_stereo_odom_file.cpp -------------------------------------------------------------------------------- /src/experiments/main_kitti_stereo_semantic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_kitti_stereo_semantic.cpp -------------------------------------------------------------------------------- /src/experiments/main_local_mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_local_mapping.cpp -------------------------------------------------------------------------------- /src/experiments/main_map2map_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_map2map_batch.cpp -------------------------------------------------------------------------------- /src/experiments/main_multi_frame_irls_kitti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_multi_frame_irls_kitti.cpp -------------------------------------------------------------------------------- /src/experiments/main_multi_frame_irls_pcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_multi_frame_irls_pcd.cpp -------------------------------------------------------------------------------- /src/experiments/main_multi_frame_irls_tum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_multi_frame_irls_tum.cpp -------------------------------------------------------------------------------- /src/experiments/main_stack_pcd_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_stack_pcd_viewer.cpp -------------------------------------------------------------------------------- /src/experiments/main_traj_playback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/experiments/main_traj_playback.cpp -------------------------------------------------------------------------------- /src/graph_optimizer/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/graph_optimizer/Frame.cpp -------------------------------------------------------------------------------- /src/graph_optimizer/PoseGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/graph_optimizer/PoseGraph.cpp -------------------------------------------------------------------------------- /src/mapping/bkiblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/mapping/bkiblock.cpp -------------------------------------------------------------------------------- /src/mapping/bkioctomap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/mapping/bkioctomap.cpp -------------------------------------------------------------------------------- /src/mapping/bkioctree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/mapping/bkioctree.cpp -------------------------------------------------------------------------------- /src/mapping/bkioctree_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/mapping/bkioctree_node.cpp -------------------------------------------------------------------------------- /src/mapping/point3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/mapping/point3f.cpp -------------------------------------------------------------------------------- /src/pcd_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/pcd_generator.cpp -------------------------------------------------------------------------------- /src/tests/main_cvo_gpu_align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/tests/main_cvo_gpu_align.cpp -------------------------------------------------------------------------------- /src/utils/CvoPixelSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/CvoPixelSelector.cpp -------------------------------------------------------------------------------- /src/utils/CvoPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/CvoPoint.cpp -------------------------------------------------------------------------------- /src/utils/CvoPointCloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/CvoPointCloud.cpp -------------------------------------------------------------------------------- /src/utils/CvoPointCovariance.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/CvoPointCovariance.cu -------------------------------------------------------------------------------- /src/utils/ImageRGBD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/ImageRGBD.hpp -------------------------------------------------------------------------------- /src/utils/ImageStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/ImageStereo.cpp -------------------------------------------------------------------------------- /src/utils/LeGoLoamPointSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/LeGoLoamPointSelection.cpp -------------------------------------------------------------------------------- /src/utils/LidarPointSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/LidarPointSelector.cpp -------------------------------------------------------------------------------- /src/utils/LoamScanRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/LoamScanRegistration.cpp -------------------------------------------------------------------------------- /src/utils/RawImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/RawImage.cpp -------------------------------------------------------------------------------- /src/utils/StaticStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/StaticStereo.cpp -------------------------------------------------------------------------------- /src/utils/VoxelMap_CvoPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/VoxelMap_CvoPoint.cpp -------------------------------------------------------------------------------- /src/utils/VoxelMap_pcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/src/utils/VoxelMap_pcl.cpp -------------------------------------------------------------------------------- /thirdparty/cnpy/cnpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cnpy/cnpy.cpp -------------------------------------------------------------------------------- /thirdparty/cnpy/cnpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cnpy/cnpy.h -------------------------------------------------------------------------------- /thirdparty/cugicp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/.clang-format -------------------------------------------------------------------------------- /thirdparty/cugicp/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/cugicp/common/gpuutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/common/gpuutil.h -------------------------------------------------------------------------------- /thirdparty/cugicp/common/inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/common/inverse.h -------------------------------------------------------------------------------- /thirdparty/cugicp/cukdtree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/cukdtree/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/cugicp/cukdtree/cukdtree.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/cukdtree/cukdtree.cuh -------------------------------------------------------------------------------- /thirdparty/cugicp/cukdtree/cukdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/cukdtree/cukdtree.h -------------------------------------------------------------------------------- /thirdparty/cugicp/cukdtree/nth_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/cukdtree/nth_element.h -------------------------------------------------------------------------------- /thirdparty/cugicp/cupointcloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/cupointcloud/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/cugicp/cupointcloud/cupointcloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/cupointcloud/cupointcloud.h -------------------------------------------------------------------------------- /thirdparty/cugicp/cupointcloud/point_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/cupointcloud/point_types.h -------------------------------------------------------------------------------- /thirdparty/cugicp/viewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/viewer/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/cugicp/viewer/color_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/viewer/color_handler.cc -------------------------------------------------------------------------------- /thirdparty/cugicp/viewer/color_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/viewer/color_handler.h -------------------------------------------------------------------------------- /thirdparty/cugicp/viewer/viewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/viewer/viewer.cc -------------------------------------------------------------------------------- /thirdparty/cugicp/viewer/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/cugicp/viewer/viewer.h -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/descriptor.cpp -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/descriptor.h -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/elas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/elas.cpp -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/elas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/elas.h -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/filter.cpp -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/filter.h -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/image.h -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/matrix.cpp -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/matrix.h -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/timer.h -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/triangle.cpp -------------------------------------------------------------------------------- /thirdparty/libelas/libelas/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMich-CURLY/unified_cvo/HEAD/thirdparty/libelas/libelas/triangle.h --------------------------------------------------------------------------------