pub fn non_max_suppression_with_overlaps<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>>(
    ctx: &'a Context,
    overlaps: &T0,
    scores: &T1,
    max_output_size: &T2,
    overlap_threshold: &T3,
    score_threshold: &T4
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for NonMaxSuppressionWithOverlaps::new().call(&ctx, &overlaps, &scores, &max_output_size, &overlap_threshold, &score_threshold).

See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/NonMaxSuppressionWithOverlaps