From 4914029a504914eb50a957dc35f3808ec31801e5 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 16 Sep 2025 12:03:36 -0500 Subject: [PATCH] Add average_estimated_speed to mqtt docs (#20101) --- docs/docs/integrations/mqtt.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/docs/docs/integrations/mqtt.md b/docs/docs/integrations/mqtt.md index afbc78e99..3ad435b81 100644 --- a/docs/docs/integrations/mqtt.md +++ b/docs/docs/integrations/mqtt.md @@ -29,12 +29,12 @@ Message published for each changed tracked object. The first message is publishe "camera": "front_door", "frame_time": 1607123961.837752, "snapshot": { - "frame_time": 1607123965.975463, - "box": [415, 489, 528, 700], - "area": 12728, - "region": [260, 446, 660, 846], - "score": 0.77546, - "attributes": [], + "frame_time": 1607123965.975463, + "box": [415, 489, 528, 700], + "area": 12728, + "region": [260, 446, 660, 846], + "score": 0.77546, + "attributes": [] }, "label": "person", "sub_label": null, @@ -61,6 +61,7 @@ Message published for each changed tracked object. The first message is publishe }, // attributes with top score that have been identified on the object at any point "current_attributes": [], // detailed data about the current attributes in this frame "current_estimated_speed": 0.71, // current estimated speed (mph or kph) for objects moving through zones with speed estimation enabled + "average_estimated_speed": 14.3, // average estimated speed (mph or kph) for objects moving through zones with speed estimation enabled "velocity_angle": 180, // direction of travel relative to the frame for objects moving through zones with speed estimation enabled "recognized_license_plate": "ABC12345", // a recognized license plate for car objects "recognized_license_plate_score": 0.933451 @@ -70,12 +71,12 @@ Message published for each changed tracked object. The first message is publishe "camera": "front_door", "frame_time": 1607123962.082975, "snapshot": { - "frame_time": 1607123965.975463, - "box": [415, 489, 528, 700], - "area": 12728, - "region": [260, 446, 660, 846], - "score": 0.77546, - "attributes": [], + "frame_time": 1607123965.975463, + "box": [415, 489, 528, 700], + "area": 12728, + "region": [260, 446, 660, 846], + "score": 0.77546, + "attributes": [] }, "label": "person", "sub_label": ["John Smith", 0.79], @@ -109,6 +110,7 @@ Message published for each changed tracked object. The first message is publishe } ], "current_estimated_speed": 0.77, // current estimated speed (mph or kph) for objects moving through zones with speed estimation enabled + "average_estimated_speed": 14.31, // average estimated speed (mph or kph) for objects moving through zones with speed estimation enabled "velocity_angle": 180, // direction of travel relative to the frame for objects moving through zones with speed estimation enabled "recognized_license_plate": "ABC12345", // a recognized license plate for car objects "recognized_license_plate_score": 0.933451 @@ -139,7 +141,7 @@ Message published for updates to tracked object metadata, for example: "name": "John", "score": 0.95, "camera": "front_door_cam", - "timestamp": 1607123958.748393, + "timestamp": 1607123958.748393 } ``` @@ -153,7 +155,7 @@ Message published for updates to tracked object metadata, for example: "plate": "123ABC", "score": 0.95, "camera": "driveway_cam", - "timestamp": 1607123958.748393, + "timestamp": 1607123958.748393 } ```