Skip to content

ROS package for Point Cloud acquisition from Ensenso Nx cameras

License

Notifications You must be signed in to change notification settings

beta-robots/ensenso_nx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

This repository holds code of a ROS package for point cloud acquisition with EnsensoNx 3D cameras. It is basically a ROS wrapper of the low-level API provided by IDS, the distributor of Ensenso cameras. The ROS node can be configured to act as a server or as publisher at a given rate. The package has been tested with N20 and N35 cameras.

Cameras and clouds at rviz

Dependencies

This package works correctly with the following dependencies:

  • Ubuntu 16.04
  • CMake + gcc
  • ROS Kinetic
  • Point Cloud Library v1.7 (shipped with ROS Kinetic)
  • UEYE driver 4.81.1 and 4.90.5 (camera interface from manufacturer IDS)
  • Ensenso SDK 1.3.18, 2.0.140 and 2.2.65(propietary library from manufacturer IDS, check correspondence with UEYE driver though at Ensenso Site)
  • Forked version of ROS sensor_msgs, with definition of SnapshotCloud.srv

To install the latest three dependencies of the above list:

  1. Download the UEYE from the IDS website (file uEye_4.90.5_Linux_64.tgz)

  2. Uncompress, move to the folder and run the script (ethernet or usb as needed)

$ sudo sh ./ueyesdk-setup-4.81.01-eth-amd64.gz.run
  1. Download the SDK from the IDS website (file ensenso-sdk-2.2.65-x64.deb)

  2. Install it with

$ sudo dpkg -i ensenso-sdk-2.2.65-x64.deb
  1. Clone to your ROS workspace /src the forked version of common_msgs
$ git clone https://github.com/beta-robots/common_msgs.git
  1. Build them with
$ catkin_make --only-pkg-with-deps common_msgs

Download and Build this ROS package

  1. Make sure that your ~/.bashrc contains these lines (the order is important):
source /opt/ros/kinetic/setup.bash
source /home/user_name/catkin_ws/devel/setup.bash
  1. At the end of your ~/.bashrc file, add the following line:
export ENSENSO_INSTALL=/opt/ensenso
  1. Do not forget to source again your .bashrc, or open a new terminal.

  2. Download this repository to your ROS workspace /src, with the command:

$ git clone https://github.com/beta-robots/ensenso_nx.git
  1. and from your ROS workspace, build it with:
$ catkin_make --only-pkg-with-deps ensenso_nx

Camera Operation

  1. Start the ueye daemon (in case it didn't started on system boot):
$ sudo /etc/init.d/ueyeethdrc start
  1. Decide whether you want to operate the camera as a publisher or as a server, by setting the run_mode parameter of the config/ensenso_nx_params.yaml file. Thereafter, run the node (by default a rviz window will appear)
$ roslaunch ensenso_nx ensenso_nx.launch
  1. If you are running the node in mode "SERVER", from another terminal request a Point Cloud capture, providing the dense point cloud flag and a given exposure value (0 meaning autoexposure):
$ rosservice call /ensenso_nx/ensenso_server "dense_cloud: false exposure: 0"
  1. Open an rqt window for dynamic reconfigure and change parameters and mode in runtime.

Troubleshooting

  • The IDS application nxView shows 3D realtime data, and allows to manage all parameters involved in the stereo computation.
$ nxView
  • Check that the IP of the computer and that of the camera are in the same network. To manually set the IP of the camera, or manage other configurations, go to:
$ ueyecameramanager
  • In some cases you have to manually edit the file /usr/local/share/ueye/ueyeethd/ueyeethd.conf with sudo privileges and set the interface and port. For instance, if you are using eth0 interface, the file should look like:
;ueye configuration file

[Parameters]
Interfaces = eth0

[eth0]
Port_Base = 50000
  • Sometimes you have to stop the ueye daemon an then start it again
$ sudo /etc/init.d/ueyeethdrc stop
$ sudo /etc/init.d/ueyeethdrc start
  • The firmare of your camera might not correspond with the drivers you download above. In order to be sure you have it, use the camera manager, i.e.
$ ueyecameramanager

And click the button Upload starter firmware.

  • Not closing properly the camera might lead to issues in operation, throwing the following exception:
An NxLib error when executing the command:
Open:
UEyeApiException: UEye API error -1(General error message) at </common/uEye/uEyeCamera.cpp:686>.

The line in the uEyeCamera.cpp file might vary depending on the version of the ueye driver you have installed. This issue can be aggravated in high temperatures conditions. The main reason for not closing properly is because the software didn't have enough time to close properly, due to a long ethernet cable or poor cable quality or a heavy loaded network.

If you are using roslaunch, you might need to increase the timeout used to escalate to SIGTERM. You can find those values here for instance. This modification is PC-based as this values are not configurable.

About

ROS package for Point Cloud acquisition from Ensenso Nx cameras

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published