Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1007 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 1007 Bytes

RobotsIO

Small C++ library to ease access to some devices of a robot using standard formats from Eigen and OpenCV.

CI badge

Browsable API

Dependencies

Optional

If the following are enabled, some functionalities related to the iCub robot and/or YARP are also available.

Installation

git clone https://github.com/xenvre/robots-io.git
cd robots-io
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH=<installation_path> [-DUSE_ICUB=ON] [-DUSE_YARP=ON] ../
make install

In order to use the library within a CMake project

find_package(RobotsIO REQUIRED)
(...)
target_link_libraries(... RobotsIO::RobotsIO ...)