From e3383e0bdea008c01cd716031a72bf397e708783 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 23 Jun 2022 12:50:08 -0600 Subject: [PATCH] Add stationary designator on bounding box --- frigate/object_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/object_processing.py b/frigate/object_processing.py index 3712d517c..45921dc52 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -399,7 +399,7 @@ class CameraState: box[2], box[3], obj["label"], - f"{obj['score']:.0%} {int(obj['area'])}", + f"{'(Stat)' if obj['stationary'] else '(Actv)'} {obj['score']:.0%} {int(obj['area'])}", thickness=thickness, color=color, )