目标检测矩形框合并

文章目录

简介

python实现目标检测矩形框合并,将同一类相邻的目标物合并到一起

代码实现

def rect_distance(x1, y1, x1b, y1b, x2, y2, x2b, y2b):
    """
    计算两个矩形框的距离
    input:两个矩形框,分别左上角和右下角坐标
    return:像素距离
    """
    left = x2b < x1
    right = x1b < x2
    bottom = y2b < y1
    top = y1b < y2
    if top and left:
        return dist(x1, y1b, x2b, y2)
    elif left and bottom:
        return dist(x1, y1, x2b, y2b)
    elif bottom and right:
        return dist(x1b, y1, x2, y2b)
    elif right and top:
        return dist(x1b, y1b, x2, y2)
    elif left:
        return x1 - x2b
    elif right:
        return x2 - x1b
    elif bottom:
        return y1 - y2b
    elif top:
        return y2 - y1b
    else:  # rectangles intersect
        return 0.

def two2one(x1, y1, x1b, y1b, x2, y2, x2b, y2b):
    """
    将两个矩形框,变成一个更大的矩形框
    input:两个矩形框,分别左上角和右下角坐标
    return:融合后矩形框左上角和右下角坐标
    """
    x = min(x1, x2)
    y = min(y1, y2)
    xb = max(x1b, x2b)
    yb = max(y1b, y2b)
    return x, y, xb, yb

def box_select_self(boxes1):
    """
    多box,最终融合距离近的,留下新的,或未被融合的
    input:多box的列表,例如:[[12,23,45,56],[36,25,45,63],[30,25,60,35]]
    return:新的boxes,这里面返回的结果是这样的,被合并的box会置为[],最终返回的,可能是这样[[],[],[50,23,65,50]]
    """
    print("boxes1:",boxes1)  # 
    ## fisrt boxes add, boxes minus
    if len(boxes1) > 0:
        for bi in range(len(boxes1)):
            for bj in range(len(boxes1)):
                if bi != bj:
                    if len(boxes1[bi]) == 4 and len(boxes1[bj]) == 4:
                        x1, y1, x1b, y1b = int(boxes1[bi][0]), int(boxes1[bi][1]), int(boxes1[bi][2]), int(boxes1[bi][3])
                        x2, y2, x2b, y2b = int(boxes1[bj][0]), int(boxes1[bj][1]), int(boxes1[bj][2]), int(boxes1[bj][3])
                        dis = rect_distance(x1, y1, x1b, y1b, x2, y2, x2b, y2b)
                        if dis < 60:
                            print('9 and 11  --- dis < 60')
                            boxes1[bj][0], boxes1[bj][1], boxes1[bj][2], boxes1[bj][3] = two2one(x1, y1, x1b, y1b, x2, y2, x2b, y2b)
                            boxes1[bi] = []
    return boxes1
  • 7
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

绯虹剑心

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值