pub fn decode_yolo_det_float<T>(
output: ArrayView2<'_, T>,
score_threshold: f32,
iou_threshold: f32,
nms: Option<Nms>,
output_boxes: &mut Vec<DetectBox>,
)Expand description
Decodes YOLO detection outputs from float tensors into detection boxes.
Boxes are expected to be in XYWH format.
Expected shapes of inputs:
- output: (4 + num_classes, num_boxes)