All articles

LibreYOLO showed up at CVPR 2026

Xuban

CVPR 2026, Denver, Colorado, June 3-7

LibreYOLO showed up at CVPR 2026.

CVPR is widely recognized as the most prestigious computer vision conference in the world. This year it was in Denver, and a team from Jabra and the IT University of Copenhagen ran a tutorial there called "Edge AI in Action: Mastering On-Device Inference". They picked LibreYOLOXs as their example model for getting object detection onto edge chips.

What they built

The tutorial walked the full edge pipeline, end to end. Start with a LibreYOLOXs model. Export it to ONNX. Then compile that ONNX down to two very different pieces of hardware: a Hailo-8L accelerator, and Qualcomm Snapdragon.

Real-time on a Hailo-8L

They compiled the ONNX to a HEF with the Hailo Dataflow Compiler, then ran it on a Raspberry Pi 5 with the Hailo-8L AI HAT.

LibreYOLOXs running on a Raspberry Pi 5 with a Hailo-8L, detecting people and handbags on a busy street

It ran at 19.0 ms per frame, 52.6 FPS, on a Raspberry Pi.

Real-time on Snapdragon

On the Qualcomm side they quantized LibreYOLOXs to INT8 and ran it through the SNPE, QAIRT, and AI Hub stack, benchmarked on a QCS6490.

LibreYOLOXs detecting a TV, laptop, keyboard, mouse and cell phone live in the EdgeVision AI app on a Snapdragon phone

It came in at 6.69 ms on the HTP/DSP.

Thank you

Huge thanks to Sai Narsi Reddy Donthi Reddy, Fabricio Batista Narcizo, Elizabete Munzlingera, and Shan Ahmed Shaffi for featuring the project.

Try it

pip install libreyolo
from libreyolo import LibreYOLO

model = LibreYOLO("LibreYOLOXs.pt")
model.export(format="onnx")   # then compile for your edge target

LibreYOLO is MIT-licensed, runs on Linux, Mac, and Windows, and works on GPU, Apple Silicon, and plain CPU with no code change. One API spans YOLOX, RF-DETR, D-FINE, DEIM, YOLO-NAS, segmentation, pose, depth, and more.

Star it on GitHub: github.com/LibreYOLO/libreyolo | Docs: libreyolo.com/docs