most_frequent_label

Function most_frequent_label 

Source
pub fn most_frequent_label<S>(
    labels: &ArrayBase<S, Ix3>,
    nb_features: usize,
) -> Option<(S::Elem, usize)>
where S: Data, S::Elem: LabelType,
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 the label function.
  • nb_features - Number of unique labels, returned by the label function.