1 Star 0 Fork 11

Ant./基于深度学习的车牌识别系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
imgtovid.py 535 Bytes
一键复制 编辑 原始数据 按行查看 历史
cold 提交于 2021-12-31 15:18 . first
import cv2
import os
def images_to_video():
fps = 15
img_array = []
img_width = 512
img_height = 512
path = "E:/pic3/"
for file_name in os.listdir(path):
img = cv2.imread(path + file_name)
if img is None:
print(file_name + "不存在")
continue
img_array.append(img)
out = cv2.VideoWriter('demo_car.mp4', cv2.VideoWriter_fourcc(*'mp4v'), fps, (img_width, img_height))
for i in range(len(img_array)):
out.write(img_array[i])
out.release()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/antonizhu/VLPR.git
git@gitee.com:antonizhu/VLPR.git
antonizhu
VLPR
基于深度学习的车牌识别系统
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385