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 +```