Skip to content
Snippets Groups Projects
user avatar
Arnaud Blanchard authored
70527801
History
Name Last commit Last update
include
python
src
test
CMakeLists.txt
README.md

Basic Library For C/C++

Install

Requirements:

You need git, a C/C++ compiler, cmake, make

git clone https://git.cyu.fr/blaar/blc.git
mkdir blc_build && cd blc_build  && cmake ../blc
make -j
sudo make install

Tests

blc_channel with python3

cd blc/python
python3 blc_channel.py

you should see:

We create a blc_channel of type unsigned char and size 3x2 on the POSIX system (shared memory)
We write 7 in column 2
We open the shared blc_channel to read it
We check that we have the same values
type UIN8 format RGB3 length 6
[0, 0, 7, 0, 0, 0]
We remove our shared memory from the system