ultralytics-inference 0.0.11

Ultralytics YOLO inference library and CLI for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license

//! CLI module for running inference.
//!
//! This module contains the command-line interface logic, including argument parsing
//! and the `predict` command implementation.

// Modules
/// CLI arguments.
pub mod args;

/// Prediction logic.
pub mod predict;