pub fn non_max_suppression_with_overlaps<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
    overlaps: O0,
    scores: O1,
    max_output_size: O2,
    overlap_threshold: O3,
    score_threshold: O4,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for NonMaxSuppressionWithOverlaps::new().build(overlaps, scores, max_output_size, overlap_threshold, score_threshold, scope).