内容简介:Conventional SLAM (simultaneous localization and mapping) algorithms commonly have aMonocular dynamic object SLAM (MonoDOS)extends conventional SLAM methods in two ways. It isIt may be good to keep in mind that not all object SLAM systems are dynamic, and
A review of monoDOS as of 2020
Jul 4 ·13min read
Conventional SLAM (simultaneous localization and mapping) algorithms commonly have a static world assumption. Even for practical SLAM systems that are able to run in dynamic environments, they usually treat dynamic objects as outliers and try to filter them out to get a static environment before applying the conventional SLAM pipeline. This severely limits its online application in autonomous driving where explicit handling of dynamic objects is critical.
Monocular dynamic object SLAM (MonoDOS)extends conventional SLAM methods in two ways. It is object -aware in that it detects and tracks not only keypoints but also objects with higher-level semantic meaning. It is also dynamic in that it can handle scenes with dynamic objects and tracks the motion of these objects.
It may be good to keep in mind that not all object SLAM systems are dynamic, and not all dynamic SLAM systems are object-aware. The seminal work of object SLAM is SLAM++ (CVPR 2013) but it still requires a static scene with static objects. Some dynamic SLAM systems improve pose estimation based on the rigid body and constant velocity constraint, but without the explicit notion of objects.
This post reviews several state-of-the-art papers in the field of dynamic object SLAM. It mainly focuses on monocular methods, and some stereo ones which can be modified to a monocular setup. This is by no means an exhaustive review, and let me know if you recommend other relevant studies.
The Elements of Dynamic Object SLAM
The dynamic object SLAM system introduces the notion of an object, and this has several implications. First, it needs to have an object proposal stage from a single frame, just as the keypoint proposal stage in conventional SLAM systems (such as ORB in ORB-SLAM). This stage will give 2D or 3D object detection results. Recent advances in monocular 3D object detection will shine here. Second, it has a more complicated data association. Static SLAM only cares about keypoints and data association just means keypoint matching across frames with feature vectors. Now we introduced the notion of objects, we have to also perform data association between keypoints and object in each frame, and objects across frames. Third, as a natural extension to the bundle adjustment in conventional SLAM, now we have to add tracked objects (tracklets) and dynamic keypoints on these objects, optionally with a velocity constraint from an assumed motion model.
I made the following chart to capture the three fundamental elements of dynamic object SLAM. The green block captures the Data Association process, the blue block captures the Bundle Adjustment process, and red squares are the factors to be optimized in the factor graph representation of Bundle Adjustment.
以上所述就是小编给大家介绍的《Monocular Dynamic Object SLAM in Autonomous Driving》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Pro Git (Second Edition)
Scott Chacon、Ben Straub / Apress / 2014-11-9 / USD 59.99
Scott Chacon is a cofounder and the CIO of GitHub and is also the maintainer of the Git homepage ( git-scm.com ) . Scott has presented at dozens of conferences around the world on Git, GitHub and the ......一起来看看 《Pro Git (Second Edition)》 这本书的介绍吧!