From f3e87862a40fba4d01edb8dc7eec3eadfa2d1c3f Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 29 Dec 2019 15:31:57 -0800 Subject: [PATCH] updates --- utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.py b/utils/utils.py index 5be021b9..feba4183 100755 --- a/utils/utils.py +++ b/utils/utils.py @@ -507,7 +507,7 @@ def non_max_suppression(prediction, conf_thres=0.5, iou_thres=0.5, multi_cls=Tru # NMS methods https://github.com/ultralytics/yolov3/issues/679 'or', 'and', 'merge', 'vision', 'vision_batch' # Box constraints - min_wh, max_wh = 2, 4096 # (pixels) minimum and maximium box width and height + min_wh, max_wh = 2, 4096 # (pixels) minimum and maximum box width and height output = [None] * len(prediction) for image_i, pred in enumerate(prediction):