上传者: 42129005
|
上传时间: 2021-10-27 21:42:54
|
文件大小: 138KB
|
文件类型: -
交通灯分类器
这个仓库是一个简单的模块(仅取决于OpenCV软件包),用于识别交通信号灯(红色,黄色或绿色)。 大多数代码来自 ,修改内容在“ Traffic_Light_Classifier.py”中列出。
相依性
Python3
OpenCV
安装
要准备环境,它需要安装上面列出的相关程序包。 我们使用创建一个示例:
conda create --name traffic_light python=3.5 -y
conda activate traffic_light
pip install opencv-python
快速开始
在所需的python环境中,克隆存储库,然后运行“ demo.py”。
git clone https://github.com/WangLiwen1994/traffic_light.git
cd traffic_light
python demo.p