当前位置:   article > 正文

使用奥比中光Orbbec Astra Pro在ROS下跑orb_slam2_奥比中光驱动

奥比中光驱动

使用奥比中光Orbbec Astra Pro在ROS下跑orb_slam2
一、奥比中光摄像头驱动
1. Install ROS
1) Create a ROS Workspace(if you don't have one)
2) Create a .sh documentation
2. Install dependences
3. Pull the repository into your ROS workspace
4.Create astra udev rule
5. Go to catkin workspace and compile astra_camera
6. Run astra_camera
7. 查看rostopic
8. 打开rviz查看图像
无法显示rgb图的解决方案
1) 使用libuvc
2) 更改product ID号
二、安装ORB_SLAM2
1. 编译
2.使用TUM数据集测试
三、运行实时ORB_SLAM2
1. 编译ROB_SLAM2的ros程序
2. 实时运行
3.标定摄像头(为了防止镜头下的图片发生畸变)

学习视觉slam摄像图是必须的,由于学校的INDEMIND模组没有的带回家,所以就整了一个奥比中光Orbbec Astra Pro摄像头,先跑一下历程试试。记录一下自己的配置过程!!!
一、奥比中光摄像头驱动
首先安装摄像头驱动,参照这个网址进行配置:https://github.com/orbbec/ros_astra_camera

1. Install ROS
1) Create a ROS Workspace(if you don’t have one)

  1. mkdir -p ~/catkin_ws/src
  2. cd ~/catkin_ws/
  3. catkin_make
  4. source devel/setup.bash

2) Create a .sh documentation

  1. cd ~/catkin_ws
  2. touch install.sh

 将以下代码复制到install.sh文件中

  1. #!/bin/bash
  2. # Varibles
  3. rosversion="kinetic"
  4. # Install the ros
  5. if [ `id -u` == 0 ]; then
  6. echo "Don't running this use root(sudo)."
  7. exit 0
  8. fi
  9. echo "Start to install the ros, http://wiki.ros.org/$rosversion/Installation/Ubuntu"
  10. echo "Update the software list"
  11. sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.ustc.edu.cn/ros/ubuntu/ $DISTRIB_CODENAME main" > /etc/apt/sources.list.d/ros-latest.list'
  12. sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 421C365BD9FF1F717815A3895523BAEEB01FA116
  13. sudo apt-get update
  14. echo "Install the ros from apt"
  15. sudo apt-get install ros-$rosversion-desktop-full -y
  16. sudo rosdep init
  17. rosdep update
  18. echo "Setup the ROS environment variables"
  19. echo -e "if [ -f /opt/ros/kinetic/setup.bash ]; then\n\tsource /opt/ros/kinetic/setup.bash\nfi" >> ~/.bashrc
  20. echo "source ~/racecar/devel/setup.bash" >> ~/.bashrc # 这一句可以注释
  21. source ~/.bashrc
  22. echo "Install the rosinstall"
  23. sudo apt-get install python-rosinstall -y
  24. echo "Install the ssh"
  25. sudo apt-get install ssh -y
  26. echo "Install the ntpdate"
  27. sudo apt-get install ntpdate -y
  28. echo "Install the chrony"
  29. sudo apt-get install chrony -y
  30. # Install the dependecies for the project
  31. echo "Start to config for the project"
  32. #echo "Install the python dependecies"
  33. #sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose -y
  34. #echo "Install the eigen3"
  35. #sudo apt install libeigen3-dev -y
  36. #echo "Install the nlopt"
  37. #sudo apt install libnlopt* -y
  38. echo "Install the ROS package for art_racecar"
  39. sudo apt-get install ros-$rosversion-joy -y --allow-unauthenticated
  40. sudo apt-get install ros-$rosversion-move-base -y --allow-unauthenticated
  41. sudo apt-get install ros-$rosversion-mrpt* -y --allow-unauthenticated
  42. sudo apt-get install ros-$rosversion-geographic-msgs -y --allow-unauthenticated
  43. sudo apt-get install ros-$rosversion-map-server -y --allow-unauthenticated
  44. sudo apt-get install ros-$rosversion-gmapping -y --allow-unauthenticated
  45. sudo apt-get install ros-$rosversion-amcl -y --allow-unauthenticated
  46. sudo apt-get install ros-$rosversion-rviz-imu-plugin -y --allow-unauthenticated
  47. sudo apt-get install ros-$rosversion-dwa-local-planner -y --allow-unauthenticated
  48. echo "--Finish"

 然后给予install.sh文件权限,并运行,该过程需要下载一些文件,可能会比较耗时,视网速而定!!!

  1. sudo chmod +x ./install.sh
  2. ./install.sh

 运行结束输入以下命令进行验证

roscore

若出现一下情况则说明安装成功
ros
此时查看bashrc文件发现ros与当前的ros工作空间已加入文档中
basjrc

2. Install dependences

sudo apt install ros-$ROS_DISTRO-rgbd-launch ros-$ROS_DISTRO-libuvc ros-$ROS_DISTRO-libuvc-camera ros-$ROS_DISTRO-libuvc-ros

 3. Pull the repository into your ROS workspace

  1. cd ~/catkin_ws/src
  2. git clone https://github.com/orbbec/ros_astra_camera

 4.Create astra udev rule

  1. roscd astra_camera
  2. ./scripts/create_udev_rules

 5. Go to catkin workspace and compile astra_camera

  1. cd ~/catkin_ws
  2. catkin_make --pkg astra_camera

 6. Run astra_camera

roslaunch astra_camera astra.launch

camera

 7. 查看rostopic

rostopic list 

topic

8. 打开rviz查看图像

rviz

查看深度图
在这里插入图片描述
在这里插入图片描述
查看rgb图
在这里插入图片描述
发现没有rgb图像!!!
在这里插入图片描述
有以下两种解决方案:

无法显示rgb图的解决方案

1) 使用libuvc

打开launch文件夹下的astra.launch文件,加入以下代码

  1. <node pkg="uvc_camera" type="uvc_camera_node" name="uvc_camera" output="screen" />
  2. <param name="width" type="int" value="320" />
  3. <param name="height" type="int" value="240" />
  4. <param name="fps" type="int" value="30" />
  5. <param name="frame" type="string" value="wide_stereo" />
  6. <param name="auto_focus" type="bool" value="False" />
  7. <param name="focus_absolute" type="int" value="1" />
  8. <!-- other supported params: auto_exposure, exposure_absolute, brightness, power_line_frequency -->
  9. <param name="device" type="string" value="/dev/video2" />
  10. <param name="camera_info_url" type="string" value="file://$(find uvc_camera)/example.yaml" />

保存并重新编译,运行查看

在这里插入图片描述
在这里插入图片描述

2) 更改product ID号

在astrapro.launch中有如下代码

  1. <!-- Push down all topics/nodelets into "camera" namespace -->
  2. <group ns="$(arg camera)">
  3. <node pkg="astra_camera" type="camera_node" name="$(arg camera)_rgb">
  4. <!-- Parameters used to find the camera -->
  5. <param name="vendor" value="0x2bc5"/>
  6. <param name="product" value="0x0501"/>
  7. <param name="serial" value="0"/>
  8. <!-- If the above parameters aren't unique, choose the first match: -->
  9. <param name="index" value="$(arg index)"/>

 可以看到这里是通过vendor向量和product ID号来确定打开的设备
查看我们设备的信息

lsusb

在这里插入图片描述
其中2bc5:0403是深度摄像头的,2bc5:0502是rgb摄像头的
将次句的0x0501改为我们设备的0x0502

  1. <param name="product" value="0x0501"/> //更改前
  2. <param name="product" value="0x0502"/> //更改后
保存编译,运行测试
roslaunch astra_camera astrapro.launch 

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

二、安装ORB_SLAM2

1. 编译

  1. cd catkin_ws/src
  2. git clone https://github.com/raulmur/ORB_SLAM2.git ORB_SLAM2
  3. cd ORB_SLAM2
  4. ./build.sh

2.使用TUM数据集测试

rgbd_dataset_freiburg1_xyz(提取码: 6gmw)

运行RGB-D测试程序,查看REANME.md,给出以下参考命令

./Examples/RGB-D/rgbd_tum Vocabulary/ORBvoc.txt Examples/RGB-D/TUMX.yaml PATH_TO_SEQUENCE_FOLDER ASSOCIATIONS_FILE
  1. 因为我使用的是rgbd_dataset_freiburg1_xyz序列,所以将TUMX.yaml改为 TUM1.yaml。
  2. 我的序列存储路径为:
  3. PATH_TO_SEQUENCE_FOLDER = Data/rgbd_dataset_freiburg1_xyz
  4. ASSOCIATIONS_FILE = Data/rgbd_dataset_freiburg1_xyz/associate.txt

在这里插入图片描述

三、运行实时ORB_SLAM2

1. 编译ROB_SLAM2的ros程序

由于代码默认订阅的话题跟我们摄像头发布的话题可能不同,所以需要更改ORB_SLAM2订阅的ros话题

  1. cd ~/catkin_ws/src/ORB_SLAM2/Examples/ROS/ORB_SLAM2/src
  2. gedit ros_rgbd.cc

 在这里插入图片描述
将/camera/rgb/image_raw更改为我们摄像头的发布的rgb话题
将camera/depth_registered/image_raw更改为我们摄像头的发布的depth话题
更改完保存编译

  1. cd ORB_SLAM2
  2. ./build_ros.sh

2. 实时运行

打开摄像头

roslaunch astra_camera astrapro.launch 

运行RGB-D,查看REANME.md,给出以下参考命令

rosrun ORB_SLAM2 RGBD PATH_TO_VOCABULARY PATH_TO_SETTINGS_FILE

我的序列存储路径为:
PATH_TO_VOCABULARY = /home/al007/Orbbec_Astra_Pro_Linux/catkin_ws/src/ORB_SLAM2/Vocabulary/ORBvoc.txt
PATH_TO_SETTINGS_FILE = /home/al007/Orbbec_Astra_Pro_Linux/catkin_ws/src/ORB_SLAM2/Examples/ROS/ORB_SLAM2/Asus.yaml
运行结果如下:


3.标定摄像头(为了防止镜头下的图片发生畸变)
1)摄像头标定时所处的平面位置一旦改变,一般会影响相机内参,需重新标定
2)将标定后的参数替换相机原有的内参,重新跑一遍即可
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/280321
推荐阅读
相关标签
  

闽ICP备14008679号