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?) }