Display more scores in Tracking Details (#22799)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions

* add computed and top score to timeline entries

* frontend

* docs
This commit is contained in:
Josh Hawkins
2026-04-07 10:06:22 -06:00
committed by GitHub
parent dfe365cd28
commit 5d2a725428
6 changed files with 90 additions and 9 deletions
+2
View File
@@ -116,6 +116,8 @@ class TimelineProcessor(threading.Thread):
),
"attribute": "",
"score": event_data["score"],
"computed_score": event_data.get("computed_score"),
"top_score": event_data.get("top_score"),
},
}
+1
View File
@@ -400,6 +400,7 @@ class TrackedObject:
"start_time": self.obj_data["start_time"],
"end_time": self.obj_data.get("end_time", None),
"score": self.obj_data["score"],
"computed_score": self.computed_score,
"box": self.obj_data["box"],
"area": self.obj_data["area"],
"ratio": self.obj_data["ratio"],