glenn-jocher commited on
Commit
41cc7ca
·
unverified ·
1 Parent(s): fcd5702

Add NMS threshold checks (#3020)

Browse files

* Add NMS threshold checks

* fix

Files changed (1) hide show
  1. utils/general.py +4 -0
utils/general.py CHANGED
@@ -476,6 +476,10 @@ def non_max_suppression(prediction, conf_thres=0.25, iou_thres=0.45, classes=Non
476
  nc = prediction.shape[2] - 5 # number of classes
477
  xc = prediction[..., 4] > conf_thres # candidates
478
 
 
 
 
 
479
  # Settings
480
  min_wh, max_wh = 2, 4096 # (pixels) minimum and maximum box width and height
481
  max_det = 300 # maximum number of detections per image
 
476
  nc = prediction.shape[2] - 5 # number of classes
477
  xc = prediction[..., 4] > conf_thres # candidates
478
 
479
+ # Checks
480
+ assert 0 <= conf_thres <= 1, f'Invalid Confidence threshold {conf_thres}, valid values are between 0.0 and 1.0'
481
+ assert 0 <= iou_thres <= 1, f'Invalid IoU {iou_thres}, valid values are between 0.0 and 1.0'
482
+
483
  # Settings
484
  min_wh, max_wh = 2, 4096 # (pixels) minimum and maximum box width and height
485
  max_det = 300 # maximum number of detections per image