pub trait ThresholdMeanExt<T> {
type Output;
// Required method
fn threshold_mean(&self) -> Result<Self::Output, Error>;
}Expand description
Runs the Mean thresholding algorithm on a type T.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".