From dbe84cb26728b1925b5d71f14bb55b8bfe20910a Mon Sep 17 00:00:00 2001 From: lucidvisionlabs <53492358+lucidvisionlabs@users.noreply.github.com> Date: Tue, 3 Mar 2020 13:21:23 -0800 Subject: [PATCH] Update README.md (#1) simple intro --- README.md | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53c52593..0afacc4f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,32 @@ -# ArenaROS +Arena Camera deriver for ROS -Arena SDK development on ROS \ No newline at end of file + +## Getting Started + +### Prerequisites +* Ubuntu-16.04 xenial +* ROS kinetic +* ArenaSDK binraies + +### Basic Setup +#### Environment for ArenaSDK + +```shell +echo "export ARENA_ROOT=">> ~/.bashrc +echo "export ARENA_ROOT=">> ~/.zshrc +source ~/.bashrc +source ~/.zshrc +``` + +#### Workspace +Copy the included image_encoding.h to your ROS include folder after +backing up the old one (if existed). The custom image_encoding.h is +included to enable streaming support for LUCID’s Helios camera. +```shell +sudo cp -f \ + /opt/ros/kinetic/include/sensor_msgs/image_encodings.h \ + /opt/ros/kinetic/include/sensor_msgs/image_encodings.h.bak +sudo cp -f \ + /catkin_ws/inc/image_encodings.h \ + /opt/ros/kinetic/include/sensor_msgs/image_encodings.h +```