Fix OBB Docs page commas error (#14609)

This commit is contained in:
Glenn Jocher 2024-07-23 16:11:09 +02:00 committed by GitHub
parent 205d560ebc
commit f94c82da31
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ Training a precise object detection model with oriented bounding boxes (OBB) req
The YOLO OBB format designates bounding boxes by their four corner points with coordinates normalized between 0 and 1. It follows this format:
```bash
class_index, x1, y1, x2, y2, x3, y3, x4, y4
class_index x1 y1 x2 y2 x3 y3 x4 y4
```
Internally, YOLO processes losses and outputs in the `xywhr` format, which represents the bounding box's center point (xy), width, height, and rotation.