distance_box_iou¶
- torchvision.ops.distance_box_iou(boxes1: Tensor, boxes2: Tensor, eps: float = 1e-07) Tensor [source]¶
返回两组框之间的距离交并比(Jaccard 指数)。
两组框都应采用
(x1, y1, x2, y2)
格式,其中0 <= x1 < x2
且0 <= y1 < y2
。- 参数:
boxes1 (Tensor[N, 4]) – 第一个框集
boxes2 (Tensor[M, 4]) – 第二个框集
eps (float, 可选) – 防止除以零的小数。默认值:1e-7
- 返回:
包含 boxes1 和 boxes2 中每个元素的成对距离 IoU 值的 NxM 矩阵
- 返回类型:
Tensor[N, M]