Visual Servoing Platform
version 3.2.0 under development (2019-01-22)
|
This tutorial summarizes how to cross-compile ViSP from source using NAOqi atom cross toolchain provided by SoftBank Robotics for Nao, Romeo or Pepper robots. The aim of this cross-compilation is then to use the cross-build resulting ViSP libraries on these robots.
This tutorial was tested on an Ubuntu 14.04 LTS host computer with:
ctc-linux32-atom-2.3.1.23
) on Romeo robotctc-linux64-atom-2.4.3.28
) on Pepper robotDownload the cross-toolchain that is compatible with your robot from https://developer.softbankrobotics.com/. Depending on the robot the version of the cross toolchain might change.
In this tutorial we will illustrate how to build ViSP for Pepper with ctc-linux64-atom-2.4.3.28
cross toolchain.
Create a workspace that contains the cross toolchain:
and unzip the toolchain:
Cross-compilation capabilities are fully supported since ViSP 3.0.1 release.
Create first a workspace dedicated to ViSP:
There are different ways to get ViSP source code in this workspace:
We suppose now that ViSP source is in a directory denoted <source_dir>
, for example $HOME/soft/visp
<binary_dir>
where you want to cross-compile ViSP. This directory will contain generated Makefiles, object files, and output libraries and binaries that could be later used on the Raspberry Pi. <binary_dir>
and configure the build: OpenCV
, v4l2
, libjpeg
, libpng
, libxml2
, pthread
, zbar
. This could be checked in ViSP-third-party.txt
file where the you should find something similar to: zbar
third-party is available with Cross Toolchain 2.3.1 Linux 64 (ctc-linux32-atom-2.3.1.23
). This library is not present in Cross Toolchain 2.4.3 Linux 64 (ctc-linux64-atom-2.4.3.28
).The resulting installation is available in $HOME/soft/visp-build-ctc-linux64-atom-2
.4.3.28.
The result of the cross-compilation could then be installed on Nao, Romeo or Pepper robot running NAOqi OS.
$HOME/visp
. LD_LIBRARY_PATH
environment var the path to ViSP libraries: You are now ready to see the next Tutorial: How to create an application that uses ViSP on NAOqi OS that explains how to use ViSP as a 3rd party to build your own project on NAOqi OS for Nao, Romeo or Pepper robots.