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
.
pub trait ThresholdMeanExt<T> {
type Output;
// Required method
fn threshold_mean(&self) -> Result<Self::Output, Error>;
}
Runs the Mean thresholding algorithm on a type T
.