feat(v1): add verified pose adapter
This commit is contained in:
+7
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user