//! Vision ops for burn, with GPU acceleration where possible.
//!
//! # Operations
//! Operation names are based on `opencv` wherever applicable.
//!
//! Currently implemented are:
//! - `connected_components`
//! - `connected_components_with_stats`
//! - `nms` (Non-Maximum Suppression)
//!
extern crate alloc;
/// Backend implementations for JIT and CPU
pub use *;
pub use *;
pub use *;
pub use *;
/// Module for vision/image utilities
pub use ;