├── .gitignore ├── CMakeLists.txt ├── README.md ├── app ├── CMakeLists.txt └── run_kitti_stereo.cpp ├── cmake_modules ├── FindCSparse.cmake ├── FindG2O.cmake └── FindGlog.cmake ├── config └── stereo │ └── gray │ ├── KITTI00-02.yaml │ ├── KITTI03.yaml │ └── KITTI04-12.yaml ├── get_model.sh ├── include └── myslam │ ├── ORBextractor.h │ ├── algorithm.h │ ├── backend.h │ ├── camera.h │ ├── common_include.h │ ├── config.h │ ├── deeplcd.h │ ├── feature.h │ ├── frame.h │ ├── frontend.h │ ├── g2o_types.h │ ├── keyframe.h │ ├── loopclosing.h │ ├── map.h │ ├── mappoint.h │ ├── system.h │ └── viewer.h ├── result ├── loopEdges.txt ├── trajectory.txt ├── trajectory0.txt ├── trajectory1.txt └── trajectory_verygood.txt └── src ├── CMakeLists.txt ├── ORBextractor.cpp ├── backend.cpp ├── camera.cpp ├── config.cpp ├── deeplcd.cpp ├── feature.cpp ├── frame.cpp ├── frontend.cpp ├── keyframe.cpp ├── loopclosing.cpp ├── map.cpp ├── mappoint.cpp ├── system.cpp └── viewer.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/README.md -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/run_kitti_stereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/app/run_kitti_stereo.cpp -------------------------------------------------------------------------------- /cmake_modules/FindCSparse.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/cmake_modules/FindCSparse.cmake -------------------------------------------------------------------------------- /cmake_modules/FindG2O.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/cmake_modules/FindG2O.cmake -------------------------------------------------------------------------------- /cmake_modules/FindGlog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/cmake_modules/FindGlog.cmake -------------------------------------------------------------------------------- /config/stereo/gray/KITTI00-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/config/stereo/gray/KITTI00-02.yaml -------------------------------------------------------------------------------- /config/stereo/gray/KITTI03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/config/stereo/gray/KITTI03.yaml -------------------------------------------------------------------------------- /config/stereo/gray/KITTI04-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/config/stereo/gray/KITTI04-12.yaml -------------------------------------------------------------------------------- /get_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/get_model.sh -------------------------------------------------------------------------------- /include/myslam/ORBextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/ORBextractor.h -------------------------------------------------------------------------------- /include/myslam/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/algorithm.h -------------------------------------------------------------------------------- /include/myslam/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/backend.h -------------------------------------------------------------------------------- /include/myslam/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/camera.h -------------------------------------------------------------------------------- /include/myslam/common_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/common_include.h -------------------------------------------------------------------------------- /include/myslam/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/config.h -------------------------------------------------------------------------------- /include/myslam/deeplcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/deeplcd.h -------------------------------------------------------------------------------- /include/myslam/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/feature.h -------------------------------------------------------------------------------- /include/myslam/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/frame.h -------------------------------------------------------------------------------- /include/myslam/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/frontend.h -------------------------------------------------------------------------------- /include/myslam/g2o_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/g2o_types.h -------------------------------------------------------------------------------- /include/myslam/keyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/keyframe.h -------------------------------------------------------------------------------- /include/myslam/loopclosing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/loopclosing.h -------------------------------------------------------------------------------- /include/myslam/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/map.h -------------------------------------------------------------------------------- /include/myslam/mappoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/mappoint.h -------------------------------------------------------------------------------- /include/myslam/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/system.h -------------------------------------------------------------------------------- /include/myslam/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/include/myslam/viewer.h -------------------------------------------------------------------------------- /result/loopEdges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/result/loopEdges.txt -------------------------------------------------------------------------------- /result/trajectory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/result/trajectory.txt -------------------------------------------------------------------------------- /result/trajectory0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/result/trajectory0.txt -------------------------------------------------------------------------------- /result/trajectory1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/result/trajectory1.txt -------------------------------------------------------------------------------- /result/trajectory_verygood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/result/trajectory_verygood.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ORBextractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/ORBextractor.cpp -------------------------------------------------------------------------------- /src/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/backend.cpp -------------------------------------------------------------------------------- /src/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/camera.cpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/deeplcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/deeplcd.cpp -------------------------------------------------------------------------------- /src/feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/feature.cpp -------------------------------------------------------------------------------- /src/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/frame.cpp -------------------------------------------------------------------------------- /src/frontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/frontend.cpp -------------------------------------------------------------------------------- /src/keyframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/keyframe.cpp -------------------------------------------------------------------------------- /src/loopclosing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/loopclosing.cpp -------------------------------------------------------------------------------- /src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/map.cpp -------------------------------------------------------------------------------- /src/mappoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/mappoint.cpp -------------------------------------------------------------------------------- /src/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/system.cpp -------------------------------------------------------------------------------- /src/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mingrui-Yu/A-Simple-Stereo-SLAM-System-with-Deep-Loop-Closing/HEAD/src/viewer.cpp --------------------------------------------------------------------------------