-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.py
70 lines (62 loc) · 3.1 KB
/
utils.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import cv2
from pathlib import Path
def save_frames_from_vid(vid_path, save_path, every_count=100):
# Берёт видео и сохраняет каждый every_count кадр, включая первый и последний Я брал каждый 100-й кадр,
# работает неплохо. Можно попробовать увеличить до 150, чтобы получить меньше склеек на целое видео
vid = cv2.VideoCapture(vid_path)
while True:
status, frame = vid.read()
counter = vid.get(cv2.CAP_PROP_POS_FRAMES)
if counter == 1 or counter % every_count == 0 or counter == int(vid.get(cv2.CAP_PROP_FRAME_COUNT)):
if frame is not None:
cv2.imwrite(Path(save_path, f'{int(counter)}.jpg').as_posix(), frame)
print(f'Frame {int(counter)}.jpg saved')
else:
break
elif not status:
break
else:
continue
def save_frames_from_vid_40sec(vid_path, save_path, every_count=100):
# Берёт видео и сохраняет каждый every_count кадр, включая первый и последний
# Я брал каждый 100-й кадр, работает неплохо. Можно попробовать увеличить до 150, чтобы получить меньше склеек на целое видео
vid = cv2.VideoCapture(vid_path)
for i in range(0, 1000):
status, frame = vid.read()
counter = vid.get(cv2.CAP_PROP_POS_FRAMES)
if counter == 1 or counter % every_count == 0 or counter == int(vid.get(cv2.CAP_PROP_FRAME_COUNT)):
if frame is not None:
cv2.imwrite(Path(save_path, f'{int(counter)}.jpg').as_posix(), frame)
print(f'Frame {int(counter)}.jpg saved')
else:
break
elif not status:
break
else:
continue
def find_slices(list_len, window_size, step=5):
# Разбивает всё количество фоток на равные части размера window_size (стабильнее всего 10 штук) с перехлёстом по
# step штук, для (10, 5) работает
slices = [(i, i + window_size) for i in range(0, list_len, step)]
if slices[-1][1] == list_len:
slices[-1] = (slices[-1][0], slices[-1][1] + 1)
elif slices[-2][1] == list_len:
del slices[-1]
slices[-1] = (slices[-1][0], slices[-1][1] + 1)
elif slices[-2][1] > list_len:
del slices[-1]
return slices
def count_iterations(total_images, num_to_stitch):
images = list(range(total_images))
iterations = 0
def stitch_images(images, num_to_stitch):
nonlocal iterations
while len(images) > num_to_stitch:
iterations += 1
new_images = []
for i in range(0, len(images) - num_to_stitch + 1, 5):
new_images.append(images[i:i+num_to_stitch])
images = new_images
return images
stitch_images(images, num_to_stitch)
return iterations