From 5576bd0f5a812cf305473f04343ddc79cae7b1fe Mon Sep 17 00:00:00 2001 From: Jeong Tae Yong Date: Wed, 22 Jan 2020 10:33:35 -0500 Subject: [PATCH] Change IUO to IOU --- sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sort.py b/sort.py index 52b55da..caa2ceb 100644 --- a/sort.py +++ b/sort.py @@ -32,7 +32,7 @@ @jit def iou(bb_test,bb_gt): """ - Computes IUO between two bboxes in the form [x1,y1,x2,y2] + Computes IOU between two bboxes in the form [x1,y1,x2,y2] """ xx1 = np.maximum(bb_test[0], bb_gt[0]) yy1 = np.maximum(bb_test[1], bb_gt[1])