mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-02-05 00:15:51 +01:00
parent
dc2e786a6f
commit
5bb5e2dc5a
@ -59,6 +59,9 @@ class LocalObjectDetector(ObjectDetector):
|
||||
raw_detections = self.detect_raw(tensor_input)
|
||||
|
||||
for d in raw_detections:
|
||||
if int(d[0]) < 0 or int(d[0]) >= len(self.labels):
|
||||
logger.warning(f"Raw Detect returned invalid label: {d}")
|
||||
continue
|
||||
if d[1] < threshold:
|
||||
break
|
||||
detections.append(
|
||||
|
Loading…
Reference in New Issue
Block a user