dongchang/test_api_server.py
2025-01-14 17:43:37 +08:00

15 lines
380 B
Python

from src.api_server import main
# 测试整个流程
main()
# 健康检查
# curl http://localhost:5000/health
# 获取距离估计
# curl "http://localhost:5000/distances?save_visualization=true"
# 更新相机配置
# curl -X POST http://localhost:5000/camera/config \
# -H "Content-Type: application/json" \
# -d '{"rtsp_url": "rtsp://new_camera_url", "fps": 30}'