-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlive_video.py
205 lines (177 loc) · 8.47 KB
/
live_video.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# import the necessary packages
import warnings
warnings.filterwarnings("ignore")
import numpy as np
import imutils
import time
import cv2
import os
from sort import *
from collections import deque
from analyse import *
cross_check = []
tracker = Sort()
memory = {}
pointsDict = {}
TrackedIDs = []
counter1 = 0
# load the COCO class labels our YOLO model was trained on
LABELS = open("coco.names").read().strip().split("\n")
# derive the paths to the YOLO weights and model configuration
weightsPath = "yolov3-tiny.weights"
configPath = "yolov3-tiny.cfg"
# load our YOLO object detector trained on COCO dataset (80 classes)
# and determine only the *output* layer names that we need from YOLO
print("[INFO] loading YOLO from disk...")
net = cv2.dnn.readNetFromDarknet(configPath, weightsPath)
ln = net.getLayerNames()
ln = [ln[i[0] - 1] for i in net.getUnconnectedOutLayers()]
# initialize the video stream, pointer to output video file, and
# frame dimensions
vs = cv2.VideoCapture(0)
writer = None
(W, H) = (None, None)
frameIndex = 0
calculatePeopleCount = True
calculateSpeed = True
Id = 0
# loop over frames from the video file stream
while True:
peoplecount = 0
totalSpeed = 0
# read the next frame from the file
(grabbed, frame) = vs.read()
if not grabbed:
break
if W is None or H is None:
(H, W) = frame.shape[:2]
# construct a blob from the input frame and then perform a forward
# pass of the YOLO object detector, giving us our bounding boxes
# and associated probabilities
blob = cv2.dnn.blobFromImage(frame, 1 / 255.0, (320,320),swapRB=True, crop=False)
net.setInput(blob)
start = time.time()
layerOutputs = net.forward(ln)
end = time.time()
# initialize our lists of detected bounding boxes, confidences,
# and class IDs, respectively
boxes = []
center = []
confidences = []
classIDs = []
# loop over each of the layer outputs
for output in layerOutputs:
# loop over each of the detections
for detection in output:
# extract the class ID and confidence (i.e., probability)
# of the current object detection
scores = detection[5:]
classID = np.argmax(scores)
confidence = scores[classID]
# filter out weak predictions by ensuring the detected
# probability is greater than the minimum probability
if confidence > 0.3:
# scale the bounding box coordinates back relative to
# the size of the image, keeping in mind that YOLO
# actually returns the center (x, y)-coordinates of
# the bounding box followed by the boxes' width and
# height
box = detection[0:4] * np.array([W, H, W, H])
(centerX, centerY, width, height) = box.astype("int")
# use the center (x, y)-coordinates to derive the top
# and and left corner of the bounding box
x = int(centerX - (width / 2))
y = int(centerY - (height / 2))
# update our list of bounding box coordinates,
# confidences, and class IDs
center.append(int(centerY))
boxes.append([x, y, int(width), int(height)])
confidences.append(float(confidence))
classIDs.append(classID)
# apply non-maxima suppression to suppress weak, overlapping
# bounding boxes
idxs = cv2.dnn.NMSBoxes(boxes, confidences, 0.3, 0.3)
#print("idxs", idxs)
#print("boxes", boxes[i][0])
#print("boxes", boxes[i][1])
dets = []
if len(idxs) > 0:
# loop over the indexes we are keeping
for i in idxs.flatten():
(x, y) = (boxes[i][0], boxes[i][1])
(w, h) = (boxes[i][2], boxes[i][3])
dets.append([x, y, x+w, y+h, confidences[i]])
#print(confidences[i])
#print(center[i])
np.set_printoptions(formatter={'float': lambda x: "{0:0.3f}".format(x)})
dets = np.asarray(dets)
tracks = tracker.update(dets)
boxes = []
indexIDs = []
c = []
previous = memory.copy()
#print("centerx",centerX)
# print("centery",centerY)
memory = {}
for track in tracks:
boxes.append([track[0], track[1], track[2], track[3]])
indexIDs.append(int(track[4]))
memory[indexIDs[-1]] = boxes[-1]
if len(boxes) > 0:
i = int(0)
for box in boxes:
(x, y) = (int(box[0]), int(box[1]))
(w, h) = (int(box[2]), int(box[3]))
# draw a bounding box rectangle and label on the image
# color = [int(c) for c in COLORS[classIDs[i]]]
# cv2.rectangle(frame, (x, y), (x + w, y + h), color, 2)
p0 = (int(x + (w-x)/2), int(y + (h-y)/2))
if indexIDs[i] in previous:
previous_box = previous[indexIDs[i]]
(x2, y2) = (int(previous_box[0]), int(previous_box[1]))
(w2, h2) = (int(previous_box[2]), int(previous_box[3]))
p0 = (int(x + (w-x)/2), int(y + (h-y)/2))
#p1 = (int(y2 - (h2-y2))),int(x2 - (w2-x2))
#cv2.line(frame, p0, p1, color, 3)
#p2 = (int(10+x2 + (w2-x2)/2), int(10+y2 + (h2-y2)/2))
#cv2.putText(frame, str(p1), p2, cv2.FONT_HERSHEY_SIMPLEX, 0.9, color, 5)
Id = indexIDs[i]
if calculatePeopleCount:
peoplecount += 1
if Id not in TrackedIDs:
TrackedIDs.append(Id)
#print(TrackedIDs)
#add center to dict
if Id in pointsDict:
pointsDict[Id].appendleft(p0)
else:
pointsDict[Id] = deque(maxlen=25)
pointsDict[Id].appendleft(center)
if calculateSpeed:
#print(pointsDict[Id])
speed = getSpeed(pointsDict[Id])
try:
totalSpeed += speed
#print(totalSpeed)
if totalSpeed == 0:
state = "Still"
color = (0,255,0)
elif totalSpeed == 1 or totalSpeed == 2:
state = "Walk"
color = (0,0,255)
elif totalSpeed == 4:
state = "Running"
color = (0,0,255)
except:
continue
#print(p0)
cv2.putText(frame, "Person Id: " + str(peoplecount), (x,y-5), cv2.FONT_HERSHEY_SIMPLEX, 0.9, color, 2)
cv2.rectangle(frame, (x, y), (w, h), color, 4)
cv2.putText(frame, state, p0, cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0,255,0), 2)
frame = imutils.resize(frame,width=600)
cv2.imshow("Image",frame)
key = cv2.waitKey(1) #wait 1ms the loop will start again and we will process the next frame
if key == 27: #esc key stops the process
break
vs.release()
cv2.destroyAllWindows()