//! SAM-style prompt-based segmentation.
//!
//! Implements a Segment-Anything-Model inspired pipeline: an image encoder
//! produces multi-scale features, a prompt encoder converts user prompts
//! (points, boxes, masks) into embeddings, and a mask decoder fuses both
//! to produce high-quality segmentation masks with IoU predictions.
pub use ;
pub use MaskDecoder;
pub use ;
pub use ;