ultralytics-inference 0.0.13

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

//! Visualization tools for inference results.

/// Color definitions and palettes.
pub mod color;

/// Skeleton structures for pose estimation.
pub mod skeleton;

#[cfg(feature = "visualize")]
pub mod viewer;

pub use color::Color;

#[cfg(feature = "visualize")]
pub use viewer::Viewer;