Traceback (most recent call last): File "D:/yolov7-lpr/yolov7_plate-master/detect_rec_plate.py", line 205, in <module> allFilePath(opt.source,file_list) File "D:\yolov7-lpr\yolov7_plate-master\plate_recognition\plate_rec.py", line 26, in allFilePath fileList = os.listdir(rootPath) TypeError: listdir: path should be string, bytes, os.PathLike or None, not int
时间: 2023-06-27 22:05:47 浏览: 129
使用realsense d435i相机,基于pytorch实现yolov5目标检测,返回检测目标相机坐标系下的位置信息。.zip
这个错误的原因是`os.listdir()`函数传入的`rootPath`参数不是字符串类型,可能是整型或其他类型。
请确保`rootPath`参数是字符串类型。如果您使用的是变量,请检查变量类型是否正确。您还可以尝试将`rootPath`转换为字符串类型,例如:
```
fileList = os.listdir(str(rootPath))
```
如果问题仍然存在,请检查`rootPath`的值是否正确。
阅读全文