gpt4 book ai didi

object-detection - 计算边界框预测的 IOU

转载 作者:行者123 更新时间:2023-12-05 05:07:36 25 4
gpt4 key购买 nike

enter image description here

我有图片中给出的这两个边界框。框坐标如下:

框 1 = [0.23072851 0.44545859 0.56389928 0.67707491]框 2 = [0.22677664 0.38237819 0.85152483 0.75449795]

坐标是这样的:ymin, xmin, ymax, xmax

我计算借条如下:

def get_iou(box1, box2):
"""
Implement the intersection over union (IoU) between box1 and box2
    
Arguments:
box1 -- first box, numpy array with coordinates (ymin, xmin, ymax, xmax)
    box2 -- second box, numpy array with coordinates (ymin, xmin, ymax, xmax)
"""
# ymin, xmin, ymax, xmax = box

y11, x11, y21, x21 = box1
y12, x12, y22, x22 = box2

yi1 = max(y11, y12)
xi1 = max(x11, x12)
yi2 = min(y21, y22)
xi2 = min(x21, x22)
inter_area = max(((xi2 - xi1) * (yi2 - yi1)), 0)
# Calculate the Union area by using Formula: Union(A,B) = A + B - Inter(A,B)
box1_area = (x21 - x11) * (y21 - y11)
box2_area = (x22 - x12) * (y22 - y12)
union_area = box1_area + box2_area - inter_area
# compute the IoU
iou = inter_area / union_area
return iou

根据我的理解,这两个框完全重叠,所以 IOU 应该是 1。但是我得到的 IOU 是 0.33193138665968164.是不是我做错了什么,或者我对它的解释不正确。在这方面的任何建议都会有所帮助。

最佳答案

您对 IoU 的解释不正确。

如果注意您的示例,您会注意到两个边界框区域的并集比区域的交集大得多。因此,IoU(实际上是交集/并集)比一个小得多是有道理的。

当你说

Based on my understanding these 2 boxes completely overlap each other so IOU should be 1.

那不是真的。在您的情况下,两个边界框仅在一个完全包含在另一个中的意义上重叠。但如果这种情况没有受到惩罚,IoU 总是可以最大化预测与图像一样大的边界框 - 这显然没有意义。

关于object-detection - 计算边界框预测的 IOU,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58995949/

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