-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBG_Learner.py
79 lines (57 loc) · 1.94 KB
/
BG_Learner.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
71
72
73
74
75
76
77
78
79
import numpy as np
import cv2
file_path = "Sample copy1.mp4"
#Load Video
cap = cv2.VideoCapture(file_path)
#Get Width & Height & FPS
Vwidth = cap.get(3)
Vheight = cap.get(4)
fps = round(cap.get(5),0)
print(str(Vwidth) + 'x' + str(Vheight) + ' , ' + str(fps) + 'fps')
#Get total number of frames
TotalFrames = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
print("Total Frames: " ,TotalFrames )
result = None
#Start
while True:
#Load the video into capture reader
ret, frame = cap.read()
#Get position of the current frame and calculate the current % done
Current_Frame_POS = int( cap.get(1) )
Learnstr = "Learning: " + str(Current_Frame_POS) + "/" + str(TotalFrames) + " " + str(round(Current_Frame_POS/ TotalFrames*100,1)) +'%'
# print(Learnstr)
#To avoid errors in frames
if frame is None:
break
#Initialize the average
if Current_Frame_POS == 1:
avg = np.float32(frame)
#Calculate the accumulated weight of the input image and the learned images
cv2.accumulateWeighted(frame, avg, 0.005)
result = cv2.convertScaleAbs(avg)
#Type on frame
font = cv2.FONT_HERSHEY_SIMPLEX
fontScale = 0.5 #Font Scale
fontColor = (255,255,255) #White
lineType = 2 #Font Thickness
cv2.putText(frame,Learnstr, (10,30), font, fontScale,fontColor, lineType)
#Show Video
winname = "Original"
cv2.namedWindow(winname)
cv2.moveWindow(winname, 100,100)
cv2.imshow(winname, frame)
winname1 = "Result"
cv2.namedWindow(winname1)
cv2.moveWindow(winname1, 600,100)
cv2.imshow(winname1, result)
# cv2.imshow('Original',frame)
# cv2.imshow('Result',result)
#Press ESC to quit
k = cv2.waitKey(1) & 0xff
if k == 27:
exit()
cv2.imwrite('BG.jpg', result)
cv2.waitKey(0)
# Release Capture when Done
cap.release()
cv2.destroyAllWindows()