Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1 KB

File metadata and controls

36 lines (24 loc) · 1 KB

bb_binary

Documentation Status

bb_binary contains the capnproto schema of the BeesBooks detections and the bbb tool. bbb is a collection of usefull tools for the BeesBook detection data.

Python Interface

To install the python interface simply run:

$ pip install git+https://github.com/BioroboticsLab/bb_binary.git

Java Interface

There is also a java interface under java. But currently there is no nice way to include it into other projects.

Copying the Data

Don't use scp: It follows the symlinks and as such duplicates some of the files.

Use rsync: Keeps the symlinks as such but leads to broken links where the data-subset is selected, these must be fixed.

Wrong:

scp -r server_ip_or_name:/path/to/bb_binary/data .

Right:

rsync -av server_ip_or_name:/path/to/bb_binary/data .
find . -type l -! -exec test -e {} \; -print | xargs rm