Home

Awesome

ViSP stack for ROS

GPL-2

1. Introduction

ROS 2 vision_visp contains packages to interface ROS 2 with ViSP which is a library designed for visual-servoing and visual tracking applications. This repository contains:

2. Install dependencies

2.1. Install ROS 2

Firstly, it assumes that the ROS 2 core has already been installed, please refer to ROS 2 installation to get started.

2.2. Install ViSP

Please refer to the official installation guide from ViSP installation tutorials.

3. Build vision_visp

Fetch the latest code and build

$ cd <YOUR_ROS2_WORKSPACE>/src
$ git clone https://github.com/lagadic/vision_visp.git -b rolling
$ cd ..
$ colcon build --symlink-install

If ViSP is not found, use VISP_DIR to point to $VISP_WS/visp-build folder like:

$ colcon build --symlink-install --cmake-args -DVISP_DIR=$VISP_WS/visp-build

4. Usage