我一直在尝试为 YOLOv4 编写正确的注释。我被告知需要相对于画布图像计算注释。但是有一个问题是边界框放错了位置。
这是我的函数,用于计算画布图像上每个徽标的注释:
def get_annotation_coordinates(canvas_shape, logo_shape):
x = (logo_width + canvas_width) / 2
y = (logo_height + canvas_height) / 2
width = logo_width / canvas_width
height = logo_height / canvas_height
return f"{x / canvas_width} {y / canvas_height} {width} {height}"
我到底做错了什么?因为显然我的计算是错误的。