mecha10-nodes-object-detector 0.1.46

Real-time object detection node using YOLO and ONNX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Object Detector Node Binary
//!
//! Real-time object detection using YOLO and ONNX Runtime.
//! Subscribes to camera frames and publishes detection results.

use mecha10_core::prelude::*;

#[tokio::main]
async fn main() -> Result<()> {
    init_logging();

    Ok(mecha10_nodes_object_detector::run().await?)
}