feat(v1): add verified pose adapter

This commit is contained in:
ila
2026-07-21 09:53:03 +08:00
parent 2805905486
commit f80fb51a85
8 changed files with 267 additions and 15 deletions
+7 -2
View File
@@ -40,12 +40,15 @@
```text
Keypoint = { x: float, y: float, confidence: float }
PersonPose = {
track_id: string,
detected_at_monotonic: float,
box_xyxy: [float, float, float, float],
box_confidence: float,
keypoints: Keypoint[17]
}
TrackedPersonPose = {
track_id: string,
detected_at_monotonic: float,
pose: PersonPose
}
PoseQuality = {
accepted: bool,
reason: string,
@@ -71,6 +74,8 @@ FallEvent = {
`FallEvent` 只在状态首次进入 `CONFIRMED` 时创建一次。连续帧更新 UI 状态,但不重复创建事件。
`PersonPose` 是 T-103 的纯模型输出,不带人员 ID;T-104 的跟踪模块产生 `TrackedPersonPose` 后,才允许事件证据按人员连续积累。
## 视频来源帧合约
```text