如何使用 Python 将边界框坐标转换为 Yolo 坐标?
Posted
技术标签:
【中文标题】如何使用 Python 将边界框坐标转换为 Yolo 坐标?【英文标题】:How to convert Bounding Box coordinates to Yolo Coordinates with Python? 【发布时间】:2021-09-03 03:14:03 【问题描述】:我需要转换坐标。我有这种格式<left> <top> <width> <height>
我需要这种格式的x_center y_center width height
。我该怎么做?
【问题讨论】:
【参考方案1】:中心只是边界框的中间。因此,只需将边界框宽度或高度的一半添加到您的左上角坐标。宽度和高度保持不变
x_center = left + width / 2
y_center = top + height / 2
【讨论】:
如果我想标准化坐标 x_center = (left + w/2) / w_img y_center = (top + h/2) / h_img w = w / w_img h = h / h_img 对吗?以上是关于如何使用 Python 将边界框坐标转换为 Yolo 坐标?的主要内容,如果未能解决你的问题,请参考以下文章
将 Google Cloud Vision OCR X 和 Y 坐标转换为 bbox 坐标