How to save multiple images in a "for" loop?
I need to save a lot of pictures in a "for" loop.I use python,imported opencv3.0.0 library already.
Assuming that you want to save files from a video recording, you can do this :
import cv2
vid = cv2.VideoCapture("video.mp4")
d = 0
ret, frame = vid.read()
while ret:
ret, frame = vid.read()
filename = "images/file_%d.jpg"%d
cv2.imwrite(filename, frame)
d+=1
Asked: 2016-09-02 00:39:11 -0600
Seen: 19,553 times
Last updated: Sep 09 '16