赞
踩
在目标检测中,常常需要计算不同方框的并交比来选取合适的方框,做跟踪用到匹配也遇到了并交比。
结果图:
代码如下:
import numpy as np
import cv2
def compute_iou(rec1, rec2):
"""
computing IoU
rec1: (x0, y0, x1, y1)
rec2: (x0, y0, x1, y1)
:return: scala value of IoU
"""
# computing area of each rectangle
S_rec1 = (rec1[2] - rec1[0]) * (rec1[3] - rec1[1])
S_rec2 = (rec2[2] - rec2[0]) *
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。