编译ORB-SLAM的3个问题的记录

源文件地址:

https://github.com/raulmur/ORB_SLAM2

安装的依赖

  • C++11 or C++0x Compiler

  • Pangolin

  • OpenCV

  • Eigen3

DBoW2 and g2o (源文件自带Included in Thirdparty folder)

出错1:

这个是查看issue的解决方法
adding #include , you can put it in System.h instead. All other files include System.h in a nested manner.

https://github.com/raulmur/ORB_SLAM2/issues/317

出错2:virtual memory exhausted: Cannot allocate memory

[root@Byrd byrd]# free -m
             total       used       free     shared    buffers     cached
Mem:           512        108        403          0          0         28
-/+ buffers/cache:         79        432
Swap:            0          0          0
[root@Byrd ~]# mkdir /opt/images/
[root@Byrd ~]# rm -rf /opt/images/swap
[root@Byrd ~]# dd if=/dev/zero of=/opt/images/swap bs=1024 count=2048000
2048000+0 records in
2048000+0 records out
2097152000 bytes (2.1 GB) copied, 82.7509 s, 25.3 MB/s
[root@Byrd ~]# mkswap /opt/images/swap
mkswap: /opt/images/swap: warning: don't erase bootbits sectors
        on whole disk. Use -f to force.
Setting up swapspace version 1, size = 2047996 KiB
no label, UUID=59daeabb-d0c5-46b6-bf52-465e6b05eb0b
[root@hz mnt]# swapon /opt/images/swap
[root@hz mnt]# free -m
             total       used       free     shared    buffers     cached
Mem:           488        481          7          0          6        417
-/+ buffers/cache:         57        431
Swap:          999          0        999

使用完毕后可以关掉swap:
重启该设置失效

[root@hz mnt]# swapoff swap
[root@hz mnt]# rm -f /opt/images/swap

swap文件也可以不删除,留着以后使用,关键是你的虚拟机硬盘够用。

参考:https://blog.csdn.net/taiyang1987912/article/details/41695895

共享文件夹设置

虚拟机菜单栏 -> 虚拟机 -> 设置 -> 选项 -> 共享文件夹 -> 总是启用 -> 添加(我将添加的共享目录命名为share_file) ->确定

编译ORB-SLAM的3个问题的记录_第1张图片

上面的步骤走完之后会出现 在/mnt/hgfs目录

你可能感兴趣的:(ROS)