Files

10 lines
245 B
Python

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