-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotion_detector.py
86 lines (65 loc) · 2.38 KB
/
motion_detector.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
80
81
82
83
84
85
86
import cv2
from datetime import datetime
import pandas
import os
first_frame = None
status_list = [None, None]
times = []
df = pandas.DataFrame(columns=["START", "END"])
video = cv2.VideoCapture(0, cv2.CAP_DSHOW)
while True:
status = 0
check, frame = video.read()
# convert frame to grayscale
grayscale_frame = cv2.cvtColor(frame, cv2.COLOR_RGB2GRAY)
grayscale_frame = cv2.GaussianBlur(grayscale_frame, (21, 21), 0)
if first_frame is None:
first_frame = grayscale_frame
continue
delta_frame = cv2.absdiff(first_frame, grayscale_frame)
threshold_frame = cv2.threshold(delta_frame, 30, 255, cv2.THRESH_BINARY)[1]
cv2.dilate(threshold_frame, None, iterations=2)
# finds contours
(cnts, _) = cv2.findContours(threshold_frame.copy(),
cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
# increase the contour value to allow detection of larger objects
for contour in cnts:
if cv2.contourArea(contour) < 10000:
continue
status = 1
# draws rectangle over moving object
(a, b, w, h) = cv2.boundingRect(contour)
cv2.rectangle(frame, (a, b), (a+w, b+h), (0, 255, 0), 2)
status_list.append(status)
status_list = status_list[-2:]
# no motion(0) to motion(1)
if status_list[-1] == 1 and status_list[-2] == 0:
times.append(datetime.now())
# motion(1) to no motion(0)
if status_list[-1] == 0 and status_list[-2] == 1:
times.append(datetime.now())
cv2.imshow('Grayscale Frame Capture', grayscale_frame)
cv2.imshow('Delta Frame Capture', delta_frame)
cv2.imshow('Threshold Frame Capture', threshold_frame)
cv2.imshow('Color Frame', frame)
key = cv2.waitKey(1)
if key == ord('q'):
if status == 1:
times.append(datetime.now())
break
# add time to dataframe using range of 2
# e.g appends times[0] to start and times[0+1] to end
# uses range of 2 so goes to 0+2
# appends time[2] to start and time[2+1]
for i in range(0, len(times), 2):
df = df.append(
{"START": times[i], "END": times[i+1]}, ignore_index=True)
current_time=datetime.now()
filename = current_time.strftime('%Y-%m-%d-%H-%M-%S')
path1 = 'csv_files'
if not os.path.exists(path1):
os.makedirs(path1)
print('Generating csv')
df.to_csv(os.path.join(path1, str(filename + '.csv')))
video.release()
cv2.destroyAllWindows()