0

以下代码从网络摄像头捕获图像,并保存到磁盘中。我想编写一个程序,它可以每 30 秒自动捕获一次图像,直到 12 小时。最好的方法是什么?

import cv2     
cap = cv2.VideoCapture(0)
image0 = cap.read()[1]
cv2.imwrite('image0.png', image0)

以下是基于@John Zwinck 的答案的修改,因为我还需要将每 30 秒捕获的图像写入磁盘命名以及捕获的时间:

import time, cv2
current_time = time.time()
endtime = current_time + 12*60*60
cap = cv2.VideoCapture(0)
while current_time < endtime:    
    img = cap.read()[1]
    cv2.imwrite('img_{}.png'.format(current_time), img)
    time.sleep(30)

但是,上面的代码每次只能将最后一个文件写入前一个文件。寻找它的改进。

4

2 回答 2

4
import time
endTime = time.time() + 12*60*60 # 12 hours from now
while time.time() < endTime:
    captureImage()
    time.sleep(30)
于 2014-03-01T15:32:06.373 回答
0

您的输出图像名称相同!!!在while循环中current_time不会改变,所以它会用相同的名字保存每一帧。更换.format(current_time).format(time.time())应该工作。

代替

while current_time < endtime:
img = cap.read()[1] cv2.imwrite('img_{}.png'.format(current_time), img) time.sleep(30)

cv2.imwrite('img_{}.png'.format(int(time.time())), img)

于 2016-06-14T06:57:52.617 回答