Function tensorflow::ops::non_max_suppression
source · pub fn non_max_suppression<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>(
boxes: O0,
scores: O1,
max_output_size: O2,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for NonMaxSuppression::new().build(boxes, scores, max_output_size, scope)
.