//! Classical image-processing primitives operating on flat `f32` buffers.
//!
//! Provides:
//! - **`edges`**: Sobel gradient operator and the full Canny edge detector
//! (non-maximum suppression + hysteresis double thresholding).
//! - **`morphology`**: binary / grayscale mathematical morphology — erosion,
//! dilation, opening, closing, and the morphological gradient with arbitrary
//! structuring elements.
//! - **`connected_components`**: union-find connected-component labelling of
//! binary images (4- or 8-connectivity) with per-component sizes and boxes.
//! - **`hough`**: Hough transform for straight-line detection (ρ–θ accumulator
//! + non-maximum-suppressed peak extraction).
pub use ;
pub use ;
pub use ;
pub use ;