瀏覽代碼

fix the bounding box calculation position at 10

Blake Blackshear 3 年之前
父節點
當前提交
e78662b924
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      frigate/objects.py

+ 2 - 2
frigate/objects.py

@@ -78,9 +78,9 @@ class ObjectTracker:
             }
             return False
 
-        # if there are less than stationary_threshold entries for the position, add the bounding box
+        # if there are less than 10 entries for the position, add the bounding box
         # and recompute the position box
-        if len(position["xmins"]) < self.detect_config.stationary_threshold:
+        if len(position["xmins"]) < 10:
             position["xmins"].append(xmin)
             position["ymins"].append(ymin)
             position["xmaxs"].append(xmax)