1 2 3 4 5 6 7
/// Glint detection algorithm implementations. /// /// This module contains implementations of various glint detection algorithms /// that can be used with the masking pipeline. pub mod threshold; pub use threshold::ThresholdAlgorithm;