前言
本文主要的参考资料和github
项目如下:
Could not find the Qt platform plugin windows
错误解决方法:
https://blog.csdn.net/DonetRen/article/details/106437538
pytorch
版yolov3
训练自己数据集:
https://www.cnblogs.com/pprp/p/10863496.html
https://blog.csdn.net/qq_38587510/article/details/106019905
https://blog.csdn.net/qq_39056987/article/details/104327638
github
项目:
labelImg:https://github.com/tzutalin/labelImg
yolov3:https://github.com/ultralytics/yolov3(master是`yolov5`,archive是`yolov3`)
labelImg
安装PyQt5
和lxml
就可以运行了,运行可能会需要配置环境变量
具体参考文章:https://blog.csdn.net/DonetRen/article/details/106437538
数据标注的方式和数据集分割的方式(划分为训练集、验证集和测试集)与keras-yolov3
项目是一样的,但是数据格式转换的操作有所不同,pytorch-yolov3
项目中没有keras
项目中的voc_annotation.py
用来转换数据格式,需要使用以下代码来完成操作。