-
Notifications
You must be signed in to change notification settings - Fork 14
/
extract_background.py
45 lines (38 loc) · 1.35 KB
/
extract_background.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
# -*- coding: utf-8 -*-
import cv2, os
rt = './data/track2-dataset'
videos = os.listdir(rt)
#path for original frames
wrt_ori = './data/all_imgs/all'
#path for background frames
wrt_bg = './data/all_imgs/bg'
if not os.path.exist(wrt_ori):
os.mkdir(wrt_ori)
if not os.path.exist(wrt_bg):
os.mkdir(wrt_bg)
for video in videos:
print (video)
if not os.path.exists(os.path.join(wrt_bg, video.split('.')[0])):
os.mkdir(os.path.join(wrt_bg, video.split('.')[0]))
if not os.path.exists(os.path.join(wrt_ori, video.split('.')[0])):
os.mkdir(os.path.join(wrt_ori, video.split('.')[0]))
#read video
cap = cv2.VideoCapture(os.path.join(rt, video))
ret, frame = cap.read()
#h, w, _ = frame.shape
#fourcc = cv2.VideoWriter_fourcc(*'MP4V')
#out = cv2.VideoWriter(os.path.join(wrt, video), fourcc, 3, (w, h))
#build MOG2 model
bs = cv2.createBackgroundSubtractorMOG2(history=120)
bs.setHistory(120)
count = 1
while ret:
fg_mask = bs.apply(frame)
bg_img = bs.getBackgroundImage()
#out.write(bg_img)
cv2.imwrite(os.path.join(wrt_bg, video.split('.')[0], str(int(count)).zfill(3)+'.jpg'), bg_img)
cv2.imwrite(os.path.join(wrt_ori, video.split('.')[0], str(int(count)).zfill(3)+'.jpg'), frame)
ret, frame = cap.read()
count += 1
#out.release()
#quit()