本项目为2020年中国软件杯A组第一批赛题"基于计算机视觉的交通场景智能应用".项目用python实现,主要使用YOLO模型实现道路目标如人、车、交通灯等物体的识别,使用开源的"中文车牌识别HyperLPR"项目实现车牌识别功能.
github地址:https://github.com/Kevinnan-teen/Intelligent-Traffic-Based-On-CV
安装过程中的报错信息
安装PyQt5的时候
报错:AttributeError: module ‘sipbuild.api’ has no attribute ‘prepare_metadata_for_build_wheel’
解决:
先更新pip
pip install --upgrade pip
报错1:
This application failed to start because no Qt platform plugin could be initialized
https://stackoverflow.com/questions/60042568/this-application-failed-to-start-because-no-qt-platform-plugin-could-be-initiali
报错2:
qt.qpa.plugin: Could not load the Qt platform plugin xcb解决方法
https://blog.csdn.net/zhanghm1995/article/details/106474505
然后就可以运行程序了