1 Star 1 Fork 1

lonerlin/classification

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
generate_images_by_video.py 590 Bytes
一键复制 编辑 原始数据 按行查看 历史
import cv2
import datetime
from my_timer import MyTimer
import os
video_path = r"E:\人工智能作品\behavior_resource\camera1\camera1.mp4"
save_path = "e:/images/2/"
cap = cv2.VideoCapture(video_path)
timer = MyTimer(interval=1)
while cap.isOpened():
ret, frame = cap.read()
if ret:
cv2.imshow("frame", frame)
if timer.timeout():
cv2.imwrite(os.path.join(save_path, datetime.datetime.now().strftime('%H%M%S%f')+'.jpg'), frame)
timer.restart()
if cv2.waitKey(30) & 0xFF == ord("q"):
break
cap.release()
cv2.destroyAllWindows()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lonerlin/classification.git
git@gitee.com:lonerlin/classification.git
lonerlin
classification
classification
master

搜索帮助