Paper review 4

[SLAM] ORB-SLAM

논문 링크 (↓) 더보기 https://arxiv.org/pdf/1502.00956.pdf Background ORB SLAM은 가장 대표적인 monocular SLAM 이다. ORB SLAM은 BA를 적용해서 실시간으로 동작하는 SLAM인 PTAM과 place recognition 기법인 Bag of Words, 그리고 covisibility information을 사용하여 만들어졌다. Map initialization ORB-SLAM의 map initialization 방법이다. Map initialization을 위해서는 두 개의 frame 간의 relative pose를 계산해야 한다. ORB-SLAM에서는 scene이 planar한 경우와 non planar한 경우 2가지에 대해서 모두 계산을 ..

Paper review 2022.06.18

[Computer vision] Efficient adaptive non-maximal suppression

Link: https://www.researchgate.net/publication/323388062_Efficient_adaptive_non-maximal_suppression_algorithms_for_homogeneous_spatial_keypoint_distribution Github: https://github.com/BAILOOL/ANMS-Codes SLAM을 위해 이미지에서 keypoint detection을 하게 되면 알고리즘에 의해 주로 같은 위치에서 여러 번 중복 검출이 되는 현상이 발생한다. 이렇게 중복 검출된 keypoint들은 오히려 SLAM의 성능을 저하시키는 요인이 된다. (In terms of memory, processing time, noise, etc.) 그래서 non-..

Paper review 2022.04.24