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.
To install the python interface simply run:
$ pip install git+https://github.com/BioroboticsLab/bb_binary.git
There is also a java interface under java
. But currently there is no nice way
to include it into other projects.
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