├── CMakeLists.txt ├── README.md ├── config ├── avia.yaml ├── horizon.yaml ├── mid360.yaml ├── ouster64.yaml ├── rslidar.yaml ├── velodyne.yaml ├── velodyne_liosam.yaml ├── velodyne_m2dgr.yaml └── velodyne_utbm.yaml ├── img ├── gate_03.png ├── gate_03_compare.png ├── street_04.png └── street_04_com.png ├── include ├── common_lib.h ├── esekfom.hpp ├── ikd-Tree │ ├── README.md │ ├── ikd_Tree.cpp │ └── ikd_Tree.h ├── use-ikfom.hpp └── utility.h ├── launch ├── mapping_avia.launch ├── mapping_horizon.launch ├── mapping_mid360.launch ├── mapping_ouster64.launch ├── mapping_rs.launch ├── mapping_rs_relocalization.launch ├── mapping_velodyne.launch ├── mapping_velodyne_liosam.launch ├── mapping_velodyne_m2dgr.launch └── mapping_velodyne_utbm.launch ├── msg └── Pose6D.msg ├── package.xml ├── rviz_cfg ├── loam_livox.rviz └── relocalization.rviz └── src ├── IMU_Processing.hpp ├── laserMapping.cpp ├── laserMapping_re.cpp ├── preprocess.cpp └── preprocess.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/README.md -------------------------------------------------------------------------------- /config/avia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/avia.yaml -------------------------------------------------------------------------------- /config/horizon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/horizon.yaml -------------------------------------------------------------------------------- /config/mid360.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/mid360.yaml -------------------------------------------------------------------------------- /config/ouster64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/ouster64.yaml -------------------------------------------------------------------------------- /config/rslidar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/rslidar.yaml -------------------------------------------------------------------------------- /config/velodyne.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/velodyne.yaml -------------------------------------------------------------------------------- /config/velodyne_liosam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/velodyne_liosam.yaml -------------------------------------------------------------------------------- /config/velodyne_m2dgr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/velodyne_m2dgr.yaml -------------------------------------------------------------------------------- /config/velodyne_utbm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/config/velodyne_utbm.yaml -------------------------------------------------------------------------------- /img/gate_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/img/gate_03.png -------------------------------------------------------------------------------- /img/gate_03_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/img/gate_03_compare.png -------------------------------------------------------------------------------- /img/street_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/img/street_04.png -------------------------------------------------------------------------------- /img/street_04_com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/img/street_04_com.png -------------------------------------------------------------------------------- /include/common_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/include/common_lib.h -------------------------------------------------------------------------------- /include/esekfom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/include/esekfom.hpp -------------------------------------------------------------------------------- /include/ikd-Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/include/ikd-Tree/README.md -------------------------------------------------------------------------------- /include/ikd-Tree/ikd_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/include/ikd-Tree/ikd_Tree.cpp -------------------------------------------------------------------------------- /include/ikd-Tree/ikd_Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/include/ikd-Tree/ikd_Tree.h -------------------------------------------------------------------------------- /include/use-ikfom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/include/use-ikfom.hpp -------------------------------------------------------------------------------- /include/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/include/utility.h -------------------------------------------------------------------------------- /launch/mapping_avia.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_avia.launch -------------------------------------------------------------------------------- /launch/mapping_horizon.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_horizon.launch -------------------------------------------------------------------------------- /launch/mapping_mid360.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_mid360.launch -------------------------------------------------------------------------------- /launch/mapping_ouster64.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_ouster64.launch -------------------------------------------------------------------------------- /launch/mapping_rs.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_rs.launch -------------------------------------------------------------------------------- /launch/mapping_rs_relocalization.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_rs_relocalization.launch -------------------------------------------------------------------------------- /launch/mapping_velodyne.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_velodyne.launch -------------------------------------------------------------------------------- /launch/mapping_velodyne_liosam.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_velodyne_liosam.launch -------------------------------------------------------------------------------- /launch/mapping_velodyne_m2dgr.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_velodyne_m2dgr.launch -------------------------------------------------------------------------------- /launch/mapping_velodyne_utbm.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/launch/mapping_velodyne_utbm.launch -------------------------------------------------------------------------------- /msg/Pose6D.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/msg/Pose6D.msg -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/package.xml -------------------------------------------------------------------------------- /rviz_cfg/loam_livox.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/rviz_cfg/loam_livox.rviz -------------------------------------------------------------------------------- /rviz_cfg/relocalization.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/rviz_cfg/relocalization.rviz -------------------------------------------------------------------------------- /src/IMU_Processing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/src/IMU_Processing.hpp -------------------------------------------------------------------------------- /src/laserMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/src/laserMapping.cpp -------------------------------------------------------------------------------- /src/laserMapping_re.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/src/laserMapping_re.cpp -------------------------------------------------------------------------------- /src/preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/src/preprocess.cpp -------------------------------------------------------------------------------- /src/preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-AIS-Lab/SI-LIO/HEAD/src/preprocess.h --------------------------------------------------------------------------------