pub fn most_frequent_label<S>(
labels: &ArrayBase<S, Ix3>,
nb_features: usize,
) -> Option<(S::Elem, usize)>Expand description
Returns the most frequent label and its index.
Ignores the background label. A blank label image will return None.
labels- 3D labels image, returned by thelabelfunction.nb_features- Number of unique labels, returned by thelabelfunction.