1 Star 0 Fork 0

KojimaNotGood/PythonVideoPulserateV2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
recorder.py 462 Bytes
一键复制 编辑 原始数据 按行查看 历史
Leeuwen, M.C. van 提交于 2020-05-15 16:14 . first commit
import cv2,os,time
from tqdm import tqdm
name = "recording_rest"
if not os.path.exists(name):
os.mkdir(name)
cap = cv2.VideoCapture(0)
timestamps = []
for idx in tqdm(range(1500)):
ret, frame = cap.read()
timestamps+=[str(time.time())]
cv2.imshow('Camera',frame)
cv2.imwrite(f"{name}/{idx}.png",frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
f = open(f"{name}/timestamps.txt","w")
f.write(",".join(timestamps))
f.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/noooToday/PythonVideoPulserateV2.git
[email protected]:noooToday/PythonVideoPulserateV2.git
noooToday
PythonVideoPulserateV2
PythonVideoPulserateV2
master

搜索帮助