在orbslam3的环境下跑orbslam2

0.CmakeList

slam2/Thirdparty/DBoW2/CmakeList
slam2/CmakeList

里的Cmake的opencv改为你的opencv版本

1.ORBextractor.h

#include <opencv/cv.h>

换为

#include<opencv2/imgproc/imgproc_c.h>
#include <opencv2/highgui/highgui_c.h>

2.CmakeList

error: ‘std::chrono::monotonic_clock’ has not been declared 

add_definitions(-DCOMPILEDWITHC11)
加个这个就行

3.tracking.cc

CV_RGBA2GRAY换为cv::COLOR_RGBA2GRAY
其他同理

4.loopClosing.h

上面注释是原文,下面是修改后的

//    typedef map<KeyFrame*,g2o::Sim3,std::less<KeyFrame*>,
//        Eigen::aligned_allocator<std::pair<const KeyFrame*, g2o::Sim3> > > KeyFrameAndPose;
    typedef map<KeyFrame*,g2o::Sim3,std::less<KeyFrame*>,
            Eigen::aligned_allocator<std::pair<KeyFrame* const, g2o::Sim3> > > KeyFrameAndPose;

5.FrameDrawer.cc

CV_GRAY2BGR改为cv::COLOR_GRAY2BGR

6.System.h

在使用了CV_LOAD_IMAGE_COLOR这个定义的c文件下,需要替换为:

#include “opencv2/imgcodecs/legacy/constants_c.h”

7.pnpsolver.cc/h

这里里面发生了任何错误请把这个文件的内容换成最原版2016版本的pnpsolver。

7.如果你把深度学习和slam2结合

detector.cc(这个文件是执行深度学习附加上去的)

cvSize(inpWidth, inpHeight)

改为

cv::Size(inpWidth, inpHeight)
DNN_BACKEND_CUDA

改为

 cv::dnn::dnn4_v20200609::DNN_BACKEND_CUDA
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值