feat:新增 DetectionAdapter 统一 4 种检测服务输出

This commit is contained in:
2026-06-11 17:23:40 +08:00
parent 05d4a5edf6
commit 24c16de9a1
2 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
"""检测结果适配器子包。
将各检测服务 (YOLO / Paddle / Action Docker 等) 的原始输出
适配为 ``models.event_schemas.DetectionResult``。
"""
from .detection_adapter import DetectionAdapter
__all__ = ["DetectionAdapter"]