-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvideo_to_img.py
50 lines (39 loc) · 1.16 KB
/
video_to_img.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import cv2
import os
def Rotate(src, degrees):
if degrees == 90:
dst = cv2.transpose(src)
dst = cv2.flip(dst, 1)
elif degrees == 180:
dst = cv2.flip(src, -1)
elif degrees == 270:
dst = cv2.transpose(src)
dst = cv2.flip(dst, 0)
else:
dst = null
return dst
def createFolder(directory):
try:
if not os.path.exists(directory):
os.makedirs(directory)
except OSError:
print('Error: Creating directory. ' + directory)
filecount = 0
for i in range(1, 250):
name = str(i)
videofile = '/Users/han/Desktop/yolov5/Val/DemisodaPeach/ValDemisodaPeach' + name + ".mov"
cam = cv2.VideoCapture(videofile)
currentFrame = 0
while(True):
ret, frame = cam.read()
if ret:
#createFolder('/Users/han/Downloads/save/' + name)
#img = Rotate(frame, 90)
cv2.imwrite('/Users/han/Desktop/yolov5/Val/DemisodaPeach/ValDemisodaPeach' +
str(filecount) + '.jpg', frame)
filecount += 1
currentFrame += 1
print(currentFrame)
else:
break
cam.release()