如何使用 Python 将边界框坐标转换为 Yolo 坐标?

How to convert Bounding Box coordinates to Yolo Coordinates with Python?

我需要转换坐标。我有这种格式 <left> <top> <width> <height> 我需要这种格式的 x_center y_center width height。我该怎么做?

中心就是边界框的中间。因此,只需将边界框宽度或高度的一半添加到左上角坐标即可。宽高保持不变

x_center = left + width / 2
y_center = top + height / 2