Skip to content

API 参考

YOLO-Toys 完整 API 文档。

可用协议

协议适用场景延迟
REST API单图推理、批处理中等
WebSocket实时视频流

快速示例

bash
# REST API
curl -X POST "http://localhost:8000/infer" \
  -F "file=@image.jpg" \
  -F "model=yolov8n.pt"
javascript
// WebSocket
const ws = new WebSocket('ws://localhost:8000/ws');
ws.send(blob); // 发送 JPEG 帧

Released under the MIT License.