pub fn get_results(
input: &Tensor,
confidence: f64,
threshold: f64,
) -> Result<Vec<Vec<(i64, i64, i64, i64, i64, f64)>>, Box<dyn Error>>
Expand description
Get the results from the output tensor input: the output tensor from the model [n, X, 8400] confidence: the confidence threshold threshold: the NMS threshold return: the results of the bounding boxes x, y, w, h, class, confidence