Home > System Tutorial > LINUX > body text

ORB-SLAM2 Beginner's Notes

WBOY
Release: 2024-04-19 21:22:01
forward
937 people have browsed it
This system includes modules common to all SLAM systems: 1Tracking (Tracking), 2Mapping (Mapping), 3Relocation (Relocalization), 4Loop closing detection(Loop closing
The key points are as follows:
ORB-SLAM2 Beginners Notes

ORB-SLAM is mainly divided into three threads: Tracking, LocalMapping and LoopClosing

The three threads are stored in the corresponding three files, namely the Tracking.cpp, LocalMapping.cpp and LoopClosing.cpp files.

1)tracking(Tracking
The main work of this part is to extract ORB features from the image, perform pose estimation based on the previous frame, or initialize the pose through global relocation, then track the reconstructed local map, optimize the pose, and then determine new key points according to some rules. frame.

2)Mapping(LocalMapping
This part mainly completes the construction of local maps. It includes inserting keyframes, verifying and filtering recently generated map points, then generating new map points, using local bundle adjustment (Local BA), and finally filtering the inserted keyframes to remove redundant keyframes.

3)Loop Closing Detection(LoopClosing
This part is mainly divided into two processes, namely closed-loop detection and closed-loop correction. The closed-loop detection first uses WOB for detection, and then calculates the similarity transformation through the Sim3 algorithm. Closed-loop correction is mainly closed-loop fusion and graph optimization of Essential Graph.

The above is the detailed content of ORB-SLAM2 Beginner's Notes. For more information, please follow other related articles on the PHP Chinese website!

source:linuxprobe.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!