0.19.1: Added OdometryVINS (VINS-Fusion integration, Odom/Strategy=9)

This commit is contained in:
matlabbe
2019-03-18 20:45:34 -04:00
parent 9c1c88d35e
commit c0a7c3a344
13 changed files with 727 additions and 69 deletions

View File

@@ -85,6 +85,7 @@ SET(SRC_FILES
odometry/OdometryORBSLAM2.cpp
odometry/OdometryLOAM.cpp
odometry/OdometryMSCKF.cpp
odometry/OdometryVINS.cpp
IMUThread.cpp
@@ -431,6 +432,17 @@ IF(msckf_vio_FOUND)
)
ENDIF(msckf_vio_FOUND)
IF(vins_FOUND)
SET(INCLUDE_DIRS
${vins_INCLUDE_DIRS}
${INCLUDE_DIRS}
)
SET(LIBRARIES
${vins_LIBRARIES}
${LIBRARIES}
)
ENDIF(vins_FOUND)
IF(ORB_SLAM2_FOUND)
SET(INCLUDE_DIRS
${ORB_SLAM2_INCLUDE_DIRS} #before so that g2o includes are taken from ORB_SLAM2 directory before the official g2o one