10 lines
280 B
Rust
10 lines
280 B
Rust
//! RTX Object Detector - YOLO-style mock object detection
|
|
//!
|
|
//! This crate provides a mock object detector for demonstration purposes.
|
|
|
|
pub mod error;
|
|
pub mod mock_detector;
|
|
|
|
pub use error::{DetectorError, Result};
|
|
pub use mock_detector::{apply_nms, generate_mock_detections};
|