usls 0.1.11

A Rust library integrated with ONNXRuntime, providing a collection of ML models.
Documentation
//! Visualization utilities for rendering and displaying ML model results
mod annotator;
mod color;
mod colormap256;
mod draw_ctx;
mod drawable;
mod drawing;
mod styles;
mod text_renderer;
#[cfg(feature = "viewer")]
mod viewer;

pub use annotator::*;
pub use color::*;
pub use colormap256::*;
pub use draw_ctx::*;
pub use drawable::*;
pub use drawing::*;
pub use styles::*;
pub use text_renderer::*;
#[cfg(feature = "viewer")]
pub use viewer::*;