snark
snark library

motivation

We slowly release into snark library parts of the large code base created over years in ACFR, Australian Centre for Field Robotics at Sydney University. snark contains the stuff that may be missing in other robotics and math libraries like opencv, Eigen, PCL, etc: algorithms, tools, sensor and actuator adaptors, etc.

why snark⸮

snark is an unseen creature that can move on the land and in the water - that's what we work on in ACFR, too
like comma used as a name for our other library, snark is a punctuation mark: ⸮

library overview

applications overview

Installation

Linux

Let's call this directory 'source_dir' (where this INSTALL file is). Before starting, create another directory which we will call 'build_dir'.

Do:

cd build_dir
cmake source_dir
make install

The "make install" step may require administrator privileges.

You can adjust the installation destination (the "prefix") by passing the -DCMAKE_INSTALL_PREFIX=myprefix option to cmake

Windows