Has Nvidia developed a C++ Object Detection example with Yolov11 or v8? Most of the inferencing examples are done in Python, not C++. Ultralytics says they don’t have a C++ example. My robotics project requires very low latency, so I need to implement the Object Detection in C++.
I’m thinking the quickest and cleanest approach is to use the existing detectnet
project from Hello AI World. But I would first need to modify the Yolo inputs and outputs to match what is expected by detectnet
(not sure what those are), then bring in the model as an ONNX network (this part is straightforward).