merge: resolve conflicts with M5Max128 local changes

This commit is contained in:
M5Max128
2026-05-21 01:11:44 +08:00
parent bebaa743ed
commit 80812128e2
4 changed files with 34 additions and 4 deletions

View File

@@ -134,6 +134,7 @@ Aggregated face traces with sorting and filtering.
| `limit` | int | 200 | Max faces (capped 1000) |
| `offset` | int | 0 | Pagination |
| `interpolate` | bool | false | Enable linear interpolation |
| `dimension` | string | — | If `"3d"`, returns `z_rel` depth per detection |
#### Response
@@ -153,13 +154,15 @@ Aggregated face traces with sorting and filtering.
"width": 187,
"height": 187,
"confidence": 0.834,
"interpolated": false
"interpolated": false,
"z_rel": 0.045
}
]
}
```
Interpolated frames: `id=0, confidence=0.0, interpolated=true`.
When `?dimension=3d`, each face includes `z_rel` (0.0 = nearest, 1.0 = farthest), derived from bbox area ratio. Without `dimension=3d`, `z_rel` is omitted.
#### Interpolation Algorithm