od_opencv 0.10.1

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
//! TensorRT backend for object detection.
//!
//! This module provides model implementations using TensorRT for NVIDIA GPUs.

mod model_ultralytics;
mod model_yunet;

pub use model_ultralytics::ModelUltralyticsRt;
pub use model_ultralytics::TrtModelError;
pub use model_yunet::ModelYuNetRt;