yolov5测试命令
时间: 2023-10-18 21:06:24 浏览: 99
yolov5 测试数据集
yolov5的测试命令如下:
```
python detect.py --weights path/to/weights --img 640 --conf 0.25 --source path/to/images
```
其中,`path/to/weights`是训练好的权重文件路径,`path/to/images`是测试图片所在的文件夹路径,`--img`指定输入图片的大小,`--conf`指定置信度阈值。
阅读全文