-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 5 replies
-
👋 Hello @AndyFitia, thank you for reaching out to Ultralytics 🚀! It sounds like you're encountering an issue with handling the ONNX model output in C++. If this is a 🐛 Bug Report, please provide a minimum reproducible example to help us debug it. This will assist our engineers in understanding the exact conditions under which your issue arises. For handling model outputs effectively, please ensure you are processing the output tensor correctly. It seems there might be a misunderstanding with the bounding box coordinates or the loop logic in your C++ code. An Ultralytics engineer will assist you soon, but meanwhile, you might consider checking the expected output format and range for your specific model. 🌟 Feel free to engage with the community or explore more about best practices for model inference across different platforms if you're looking into deeper customization or troubleshooting. We appreciate your patience and enthusiasm! 🙌 |
Beta Was this translation helpful? Give feedback.
-
@AndyFitia it looks like you're encountering issues with interpreting the ONNX model output in C++. The output shape |
Beta Was this translation helpful? Give feedback.
-
This was the doc that helped me. I use Yolo11 but it appears to share the same output as Yolov8 |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Thank you so much, I found the issue. I was dumb. Thank you so much for your assistance. |
Beta Was this translation helpful? Give feedback.
This was the doc that helped me. I use Yolo11 but it appears to share the same output as Yolov8
https://medium.com/@reachraktim/how-to-get-bounding-boxes-and-class-probabilities-from-yolov5-and-yolov8-raw-output-4c4d3dd93fae
Thank you.