1//! Module containing utilities to convert data formats. 2use ndarray::Array2; 3 4pub mod conversions; 5pub mod utils; 6 7/// A boolean mask indicating for each pixel whether it belongs to the object or not. 8pub type Mask = Array2<u8>;