//! Semantic segmentation module
//!
//! This module provides comprehensive semantic segmentation algorithms including:
//!
//! - **FCN-lite**: Fully Convolutional Network concepts with bilinear upsampling,
//! segmentation metrics, and dense CRF post-processing.
//! - **DeepLab-lite**: Atrous (dilated) convolution and Atrous Spatial Pyramid Pooling
//! (ASPP) for multi-scale context aggregation.
//! - **Legacy models**: `DeepLabV3Plus`, `UNet`, `FCN` (from the original semantic module).
//!
//! # Format conventions
//!
//! Arrays use **HWC** order (`Array3<f32>` with shape `[H, W, C]`) for single images
//! and **NHWC** order (`Array4<f32>` with shape `[N, H, W, C]`) for batches.
//! Class logits / probabilities are the last axis (C).
// Re-export the original semantic segmentation structs / helpers.
pub use ;
pub use ;
// Re-export legacy items so existing callers keep working.
pub use ;