本項目為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
然后就可以運行程序了