├── README.md └── SC-LIO-SAM ├── CMakeLists.txt ├── LICENSE ├── config ├── params_liosam.yaml └── params_mulran.yaml ├── doc ├── kaist02.png ├── removert_eaxmple.png ├── riverside03.png ├── saver.png └── utils_example.png ├── include ├── KDTreeVectorOfVectorsAdaptor.h ├── Scancontext.h ├── nanoflann.hpp ├── tictoc.h └── utility.h ├── launch ├── include │ ├── config │ │ ├── robot.urdf.xacro │ │ └── rviz.rviz │ ├── module_loam.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_mulran.launch ├── msg └── cloud_info.msg ├── package.xml ├── src ├── Scancontext.cpp ├── featureExtraction.cpp ├── imageProjection.cpp ├── imuPreintegration.cpp └── mapOptmization.cpp └── tools ├── matlab ├── listdir.m └── pcd_viewer.m └── python ├── bone_table.npy ├── jet_table.npy ├── makeMergedMap.py └── pypcdMyUtils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/README.md -------------------------------------------------------------------------------- /SC-LIO-SAM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/CMakeLists.txt -------------------------------------------------------------------------------- /SC-LIO-SAM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/LICENSE -------------------------------------------------------------------------------- /SC-LIO-SAM/config/params_liosam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/config/params_liosam.yaml -------------------------------------------------------------------------------- /SC-LIO-SAM/config/params_mulran.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/config/params_mulran.yaml -------------------------------------------------------------------------------- /SC-LIO-SAM/doc/kaist02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/doc/kaist02.png -------------------------------------------------------------------------------- /SC-LIO-SAM/doc/removert_eaxmple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/doc/removert_eaxmple.png -------------------------------------------------------------------------------- /SC-LIO-SAM/doc/riverside03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/doc/riverside03.png -------------------------------------------------------------------------------- /SC-LIO-SAM/doc/saver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/doc/saver.png -------------------------------------------------------------------------------- /SC-LIO-SAM/doc/utils_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/doc/utils_example.png -------------------------------------------------------------------------------- /SC-LIO-SAM/include/KDTreeVectorOfVectorsAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/include/KDTreeVectorOfVectorsAdaptor.h -------------------------------------------------------------------------------- /SC-LIO-SAM/include/Scancontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/include/Scancontext.h -------------------------------------------------------------------------------- /SC-LIO-SAM/include/nanoflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/include/nanoflann.hpp -------------------------------------------------------------------------------- /SC-LIO-SAM/include/tictoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/include/tictoc.h -------------------------------------------------------------------------------- /SC-LIO-SAM/include/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/include/utility.h -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/config/robot.urdf.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/config/robot.urdf.xacro -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/config/rviz.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/config/rviz.rviz -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/module_loam.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/module_loam.launch -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/module_navsat.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/module_navsat.launch -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/module_robot_state_publisher.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/module_robot_state_publisher.launch -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/module_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/module_rviz.launch -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/rosconsole/rosconsole_error.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/rosconsole/rosconsole_error.conf -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/rosconsole/rosconsole_info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/rosconsole/rosconsole_info.conf -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/include/rosconsole/rosconsole_warn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/include/rosconsole/rosconsole_warn.conf -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/run.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/run.launch -------------------------------------------------------------------------------- /SC-LIO-SAM/launch/run_mulran.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/launch/run_mulran.launch -------------------------------------------------------------------------------- /SC-LIO-SAM/msg/cloud_info.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/msg/cloud_info.msg -------------------------------------------------------------------------------- /SC-LIO-SAM/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/package.xml -------------------------------------------------------------------------------- /SC-LIO-SAM/src/Scancontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/src/Scancontext.cpp -------------------------------------------------------------------------------- /SC-LIO-SAM/src/featureExtraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/src/featureExtraction.cpp -------------------------------------------------------------------------------- /SC-LIO-SAM/src/imageProjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/src/imageProjection.cpp -------------------------------------------------------------------------------- /SC-LIO-SAM/src/imuPreintegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/src/imuPreintegration.cpp -------------------------------------------------------------------------------- /SC-LIO-SAM/src/mapOptmization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/src/mapOptmization.cpp -------------------------------------------------------------------------------- /SC-LIO-SAM/tools/matlab/listdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/tools/matlab/listdir.m -------------------------------------------------------------------------------- /SC-LIO-SAM/tools/matlab/pcd_viewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/tools/matlab/pcd_viewer.m -------------------------------------------------------------------------------- /SC-LIO-SAM/tools/python/bone_table.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/tools/python/bone_table.npy -------------------------------------------------------------------------------- /SC-LIO-SAM/tools/python/jet_table.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/tools/python/jet_table.npy -------------------------------------------------------------------------------- /SC-LIO-SAM/tools/python/makeMergedMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/tools/python/makeMergedMap.py -------------------------------------------------------------------------------- /SC-LIO-SAM/tools/python/pypcdMyUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gisbi-kim/SC-LIO-SAM/HEAD/SC-LIO-SAM/tools/python/pypcdMyUtils.py --------------------------------------------------------------------------------