Astra - BodyStream

On Ubuntu 18, using last available sdk version I’m failing to open the bodystream.
When using the following code:

astra::initialize();
reader = streamSet.create_reader();
reader.stream<astra::BodyStream>().start();
astra::Frame frame = reader.get_latest_frame();
auto bodyFrame = frame.get<astra::BodyFrame>();

The program hangs after “reader.get_latest_frame()” while spamming error messages such as:

ERROR [orbbec.ni.LibuvcColorStream] unable to open libuvc device: Access denied
ERROR [orbbec.ni.device_streamset] could not open uvc-based color stream

DepthStream is working ok but I’m getting the same error messages.

Any idea?