# 目标检测模块 ## 快速开始 ```python from pyzjr.vision import Detector # 初始化检测器 detector = Detector(model_name="yolov5s") # 检测图像 results = detector.detect("image.jpg") print(results.xyxy[0]) # 输出检测框坐标