gitextract_j229x4hx/ ├── .clang-format ├── .github/ │ └── stale.yml ├── .gitignore ├── CITATION.bib ├── CMakeLists.txt ├── LICENSE ├── README.md ├── config/ │ ├── doc/ │ │ └── kitti2bag/ │ │ ├── README.md │ │ └── kitti2bag.py │ ├── params.yaml │ ├── params_hsinchu.yaml │ └── params_kitti.yaml ├── include/ │ ├── factor.h │ ├── solver.h │ └── utility.h ├── launch/ │ ├── debug.launch │ ├── gdbserver_debug.launch │ ├── include/ │ │ ├── config/ │ │ │ ├── robot.urdf.xacro │ │ │ └── rviz.rviz │ │ ├── module_loam.launch │ │ ├── module_loam_debug.launch │ │ ├── module_loam_gdbserver_debug.launch │ │ ├── module_navsat.launch │ │ ├── module_robot_state_publisher.launch │ │ ├── module_rviz.launch │ │ └── rosconsole/ │ │ ├── rosconsole_error.conf │ │ ├── rosconsole_info.conf │ │ └── rosconsole_warn.conf │ ├── run.launch │ ├── run_hsinchu.launch │ └── run_kitti.launch ├── msg/ │ ├── Diagnosis.msg │ ├── ObjectState.msg │ ├── ObjectStateArray.msg │ ├── cloud_info.msg │ └── flags.msg ├── package.xml ├── scripts/ │ └── diagnose.py ├── src/ │ ├── factor.cpp │ ├── featureExtraction.cpp │ ├── imageProjection.cpp │ ├── imuPreintegration.cpp │ ├── mapOptimization.cpp │ ├── offlineBagPlayer.cpp │ └── solver.cpp └── srv/ ├── detection.srv ├── save_estimation_result.srv └── save_map.srv