IoU(Intersection-over-Union)

简介: 交并比 (intersection over union)即为两个区域的交集与并集的比值。

交并比 (intersection over union)

即为两个区域的交集与并集的比值。
例如有两个区域 CG,如下图表示:

那么 IoU 的值定义为:
$$IoU=\frac{C \cap G}{C \cup G}$$

目标检测中的 IoU

在目标检测中,算法预测出来的 bounding box 不会与 ground truth box 一致,所以就使用 IoU 来评定预测出来的框的好坏。

与 ground truth box 重叠部分越多的候选框得分就会越高,就越有可能被分配正标签。

目录
相关文章
|
8月前
|
存储 算法 数据挖掘
常用集会算法set_intersection讲解
常用集会算法set_intersection讲解
124 1
|
5月前
|
数据采集 SQL 关系型数据库
在 Postgres 中使用 Intersection
【8月更文挑战第11天】
82 0
在 Postgres 中使用 Intersection
|
8月前
|
存储
并查集Union-find Sets
并查集Union-find Sets
42 0
|
8月前
|
存储 算法 数据挖掘
常用集会算法-set_intersection讲解
常用集会算法-set_intersection讲解
113 0
|
Windows
L2-005 集合相似度(vector、set求并交集)
L2-005 集合相似度(vector、set求并交集)
124 0
|
算法 容器
常用集合算法 set_intersection() set_union() set_difference()
常用集合算法 set_intersection() set_union() set_difference()
|
关系型数据库 MySQL 数据库
数据库并集union、交集intersect、差集except
数据库并集union、交集intersect、差集except 6
348 0
数据库并集union、交集intersect、差集except
LeetCode 350: 两个数组的交集 II Intersection of Two Arrays II
题目: 给定两个数组,编写一个函数来计算它们的交集。 Given two arrays, write a function to compute their intersection. 示例 1: 输入: nums1 = [1,2,2,1], nums2 = [2,2] 输出: [2,2] 示例 2: 输入: nums1 = [4,9,5], nums2 = [9,4,9,8,4] 输出: [4,9] 说明: 输出结果中每个元素出现的次数,应与元素在两个数组中出现的次数一致。
727 0