gpt4 book ai didi

python-3.x - 如何使用opencv通过xmax xmin ymax ymin编写矩形(边界框)

转载 作者:行者123 更新时间:2023-12-02 16:46:41 25 4
gpt4 key购买 nike

我发现我无法使用 opencv 使用 4 个点(x、y、w、h)轻松编写边界框。其中 x, y 为左上角,w=width, h=height。

cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),15)

但是如何使用只有 xmax xmin ymax ymin 点的 opencv 编写边界框?我需要检查我的代码是否一切正常,x, y, w, h 使用的边界框是否完全等于我在 xmax xmin ymax ymin 下的边界框>。

我使用这些代码将 x, y, w, h 转换为 xmax xmin ymax ymin

bbox_topleft_corner_x = int(prod_data[0])
bbox_topleft_corner_y = int(prod_data[1])
bbox_w = int(prod_data[2])
bbox_h = int(prod_data[3])

ymax = bbox_topleft_corner_y
ymin = bbox_topleft_corner_y - bbox_h
xmax = bbox_topleft_corner_x + bbox_w
xmin = ymin + bbox_w

但我不确定我是否按照自己的意愿做了所有事情。我想将 x, y, w, h 转换为 VOOC2007 注释 xml 格式及其边界框格式

谢谢你的建议

最佳答案

给定 x、y、宽度和高度,获取 x_max 和 y_max 应该是微不足道的。

x_max = x + width
y_max = y + height

重要的是要记住图像的坐标系以左上角的 (0, 0) 和右下角的 (image_width, image_height) 开头。因此:

top_left = (x, y)
bottom_right = (x+w, y+h)

最后要记住的是,在某些情况下请求的参数是一个点 (x, y),例如 cv2.rectangle 函数中的情况。但是,像素作为底层 ndarray 结构 image[row, column]

进行访问

查看 this question有关 opencv 坐标系的更多信息。

关于python-3.x - 如何使用opencv通过xmax xmin ymax ymin编写矩形(边界框),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49011106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com