jgraving / bb_binary

Binary Format for the BeesBook detections

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bb_binary

Build Status Coverage Status 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

About

Binary Format for the BeesBook detections


Languages

Language:Python 67.8%Language:C++ 13.5%Language:CMake 9.0%Language:Cap'n Proto 5.5%Language:Scala 4.2%