以下代码从网络摄像头捕获图像,并保存到磁盘中。我想编写一个程序,该程序可以每 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)
但是,上面的代码每次只能写入最后一个文件而不是前一个文件。寻找它的改进。
import time
endTime = time.time() + 12*60*60 # 12 hours from now
while time.time() < endTime:
captureImage()
time.sleep(30)
输出图像名称相同!!在 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)