Hello everyone, I’m working on an Android app that uses KotlinDL. I recently got a YOLOv8 model in ONNX format, and here’s the metadata for the model’s output:
• Name: output0
• Type: float32[1,11,8400]
How can I extract bounding boxes, confidence scores, and class labels from a YOLOv8 ONNX model output in KotlinDL?
Thank you for any guidance you can provide!