From 654b9834c2930a1fe3fda0522f5942bd4a8113c2 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 22 Dec 2019 13:28:51 -0800 Subject: [PATCH] updates --- utils/utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/utils.py b/utils/utils.py index 35c040ff..cc314102 100755 --- a/utils/utils.py +++ b/utils/utils.py @@ -315,8 +315,6 @@ def box_iou(boxes1, boxes2): def wh_iou(box1, box2): # Returns the IoU of wh1 to wh2. wh1 is 2, wh2 is 2xn - - # w, h = box1 w1, h1 = box1[0], box1[1] w2, h2 = box2[0], box2[1]