[Documentation] [TitleIndex] [WordIndex

  Show EOL distros: 

Package Summary

Drivers for Orbbec Astra Devices.

Package Summary

Drivers for Orbbec Astra Devices.

Package Summary

Drivers for Orbbec Astra Devices.

  • Maintainer status: maintained
  • Maintainer: Orbbec3D <nan AT orbbec3d DOT com>
  • Author: Tim Liu <liuhua AT orbbec DOT com>
  • License: Apache License 2.0
  • Source: git https://github.com/Quori-ROS/quori_ros.git (branch: master)

astra_camera

A ROS driver for Orbbec 3D cameras.

Install

This package supports ROS Kinetic and Melodic.

  1. Install ROS.

  2. Install dependences
    sudo apt install ros-*-rgbd-launch ros-*-libuvc ros-*-libuvc-camera ros-*-libuvc-ros
  3. Create a ROS Workspace(if you don't have one)

    mkdir -p
    /catkin_ws/src
    /catkin_ws/
    catkin_make
  4. Pull the repository into your ROS workspace
    /catkin_ws/src
    git clone https://github.com/orbbec/ros_astra_camera
  5. Create astra udev rule
    roscd astra_camera
    ./scripts/create_udev_rules
  6. Go to catkin workspace and compile astra_camera
    /catkin_ws
    catkin_make --pkg astra_camera

Filter Enable (To be deprecated: recommend to try master branch at first)

Astra driver provides normal and filtering methods. With filter driver, we can get more precise depth data but it would cost more computing resources. If the program will be executed on embedded systems, we suggest to use normal method. You can use -DFILTER=ON / OFF to change the method as below.

catkin_make --pkg astra_camera -DFILTER=OFF

Run astra_camera

If you didn't add source $YOUR_WORKSPACE/devel/setup.bash to your .bashrc, remember to source it when open a new terminal :)

Examples

Use Astra

roslaunch astra_camera astra.launch

Use Astra Stereo S (w/ UVC)

roslaunch astra_camera stereo_s.launch

You can use rviz or image_view to verify the outputs.

Important Topics

Useful Services

This package provides multiple ros services for users to get useful information and set up devices. To know more about using these services, please check this tutorial.

Examples

After launching an astra camera, you can get ir exposure by the following command

  1. ir exposure
    rosservice call /camera/get_ir_exposure
    Next, you can change this value in this way
    rosservice call /camera/set_ir_exposure
  2. turn on/off laser
    rosservice call /camera/set_laser
    rosservice call /camera/set_laser
  3. switch ir
    rosservice call /camera/switch_ir_camera
    rosservice call /camera/switch_ir_camera

For the other services, the usage is same as the above example.

Multiple Cameras

To launch multiple cameras, you could modify multi_astra.launch to match your setting. The important settings are device_x_id(serial number of your devices), 3d_sensor(name of launch file), and has_uvc_serial(does your camera's uvc have serial number).

If you received USB Buffer Error, you could try to increase your USBFS buffer size by the following command.

 echo 64 > /sys/module/usbcore/parameters/usbfs_memory_mb

2024-02-24 12:26