od_opencv 0.9.0

Object detection utilities in Rust programming language for YOLO-based neural networks in OpenCV ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! RKNN NPU backend for object detection.
//!
//! This module provides YOLO model implementations using the RKNN NPU runtime
//! for Rockchip devices.

mod model_ultralytics;
mod model_yunet;

pub use model_ultralytics::ModelUltralyticsRknn;
pub use model_ultralytics::RknnModelError;
pub use model_yunet::ModelYuNetRknn;