Crate yolo_rs

Source
Expand description

A Rust library for the YOLO v11 object detection model.

This library provides a high-level API for running the YOLO v11 object detection model. Currently, it supports only the inference.

Modules§

error
The errors of the Yolo crate.
model
Load the YOLO model.

Structs§

BoundingBox
YoloEntityOutput
YoloInput
YoloInputView

Functions§

image_to_yolo_input_tensor
Convert an image to a YOLO input tensor.
inference
Inference on the YOLO model, returning the detected entities.