faster rcnn 基本概念

rpn:region proposal network
IoU:Intersection-over-Union,交集并集之比
GT:ground truth,GT boxes (x1, y1, x2, y2, label),左上的坐标 和 右下的坐标 + label
im:image
ROI:region of interest
bbox:bounding-box
regression:和one hot的classification其实区别不大,只是target是(可能为0和1以及)其他数字
anchor:一个box,通过从上一个卷积层的结果 滑动得到很多个,每个要和 GT的box 计算bbox_overlap
bbox_overlap:貌似就是IoU,源码如下

def bbox_overlaps(
        np.ndarray[DTYPE_t, ndim=2] boxes,  #anchor的box
        np.ndarray[DTYPE_t, ndim=2] query_boxes):  #GT的box
    """
    Parameters
    ----------
    boxes: (N, 4) ndarray of float  #(x1, y1, x2, y2)
    query_boxes: (K, 4) ndarray of float  #(x1, y1, x2, y2)
    Returns
    -------
    overlaps: (N, K) ndarray of overlap between boxes and query_boxes
    """
    cdef unsigned int N = boxes.shape[0]  #个数
    cdef unsigned int K = query_boxes.shape[0]  #个数
    cdef np.ndarray[DTYPE_t, ndim=2] overlaps = np.zeros((N, K), dtype=DTYPE)
    cdef DTYPE_t iw, ih, box_area
    cdef DTYPE_t ua
    cdef unsigned int k, n
    for k in range(K):
        box_area = ( #query_boxes的面积
            (query_boxes[k, 2] - query_boxes[k, 0] + 1) *
            (query_boxes[k, 3] - query_boxes[k, 1] + 1)
        )
        for n in range(N):
            iw = (
                min(boxes[n, 2], query_boxes[k, 2]) -
                max(boxes[n, 0], query_boxes[k, 0]) + 1
            )
            if iw > 0:  #两个box的w有交集
                ih = (
                    min(boxes[n, 3], query_boxes[k, 3]) -
                    max(boxes[n, 1], query_boxes[k, 1]) + 1
                )
                if ih > 0:  #两个box的h有交集
                    ua = float( 
                        (boxes[n, 2] - boxes[n, 0] + 1) *
                        (boxes[n, 3] - boxes[n, 1] + 1) +
                        box_area - iw * ih
                    )
                    overlaps[n, k] = iw * ih / ua #交集面积 除以 并集面积
    return overlaps
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

CoderGuo1988

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

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

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

打赏作者

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

抵扣说明:

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

余额充值