feat: ASRX hybrid pipeline, identity history, worker fixes, checkpoint system

This commit is contained in:
Accusys
2026-06-02 07:13:23 +08:00
parent e3066c3f49
commit e1572907ae
198 changed files with 43705 additions and 8910 deletions

View File

@@ -319,12 +319,13 @@ def store_traced_faces(file_uuid: str, traced_json_path: str, schema: str = SCHE
cur.execute(
f"""
UPDATE {schema}.face_detections
SET trace_id = %s
SET trace_id = %s, embedding = %s
WHERE file_uuid = %s AND frame_number = %s
AND x = %s AND y = %s AND width = %s AND height = %s
""",
(
trace_id,
embed_vec,
file_uuid, frame_num, x, y, w, h,
),
)