-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpipeline.py
More file actions
387 lines (313 loc) · 13.8 KB
/
pipeline.py
File metadata and controls
387 lines (313 loc) · 13.8 KB
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# -*- coding: utf-8 -*-
"""
Case Studies in Data Analytics-Assignment 1
Author: Saikrishna Javvadi
Main script for running the complete object detection and classification pipeline.
References: https://learnopencv.com/read-write-and-display-a-video-using-opencv-cpp-python/
https://github.com/qqwweee/keras-yolo3
https://pjreddie.com/darknet/yolo/
https://melvinkoh.me/solving-producerconsumer-problem-of-concurrent-programming-in-python-ck3bqyj1j00i8o4s1cqu9mfi7
https://machinelearningmastery.com/how-to-calculate-precision-recall-f1-and-more-for-deep-learning-models/
"""
import sys
sys.path.append('keras-yolo3-master')
from multiprocessing import Process, Queue
from PIL import Image, ImageFont, ImageDraw
from yolo import YOLO
from tensorflow import keras
import cv2
import time
import copy
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
FRAME_RATE = 30 # frames per second
# Allowing user to choose a query to run if required
DO_ANALYSIS = False
QUERY = 'Query2'
try:
QUERY = sys.argv[1]
except:
QUERY = 'Query2'
if QUERY == 'Query2':
DO_ANALYSIS = True
results = {} # initialising an empty dictionary to store the query results from each frame
default_result_row = {'Sedan': 0,
'SUV': 0,
'Total': 0}
def stream_video(frame_queue):
print("Starting Streaming Video")
# Read until video is completed
video_capture = cv2.VideoCapture('./video.mp4')
while (video_capture.isOpened()):
# capturing frame by frame
ret, frame = video_capture.read()
if ret == True:
# Adding the frame to queue
frame_queue.put(frame)
# Delay by frame rate
time.sleep(1 / FRAME_RATE)
# Break the loop if "Q" is pressed
if cv2.waitKey(25) & 0xFF == ord('q'):
break
else:
break
# Release the video capture object after all the frames are streamed
video_capture.release()
# Closes all the frames
cv2.destroyAllWindows()
def frame_processor(frame_queue):
print("Starting Processing frames")
global QUERY
global DO_ANALYSIS
frame_num = 0
# Instantiating YOLO , using YOLO-V3 weights
yolo = YOLO(model_path='./model_data/yolo_v3.h5',
anchors_path='./model_data/yolo_anchors.txt',
classes_path='./model_data/coco_classes.txt')
# Instantiate car type classifier
model = keras.models.load_model('./mobilenet_cars.h5')
# Font for annotations
font1 = ImageFont.truetype(font='font/FiraMono-Medium.otf', size=11)
font2 = ImageFont.truetype(font='font/FiraMono-Medium.otf', size=15)
# Arraylist to store the query statistics
query1_stats = []
query2_stats = []
fourcc = cv2.VideoWriter_fourcc(*'MP4V')
out = cv2.VideoWriter('output_video/Saikrishna_Javvadi_Assignment1_video.mp4', fourcc, 30, (360, 288))
pipeline_start_time = time.time()
while True:
# retrieve the frame from the queue
frame = frame_queue.get()
start_time = time.time()
frame_num += 1
print(f'\nFrame {frame_num}')
video_time = frame_num * (1 / 25) # 25 is the true frame rate of the video
print(f'Video Time {round(video_time, 2)} s')
new_result = copy.deepcopy(default_result_row)
if QUERY in ['Query1', 'Query2']:
# ------------------------ STEP 1 ------------------------
# Using YOLO to detect car objects
car_boxes, dims_car_boxes = get_car_bounding_boxes(frame, yolo)
new_result['Total'] = len(car_boxes) # Total number of cars in the given frame
query1_stats.append([frame_num, time.time() - start_time])
# ---------------------------------------------------------
if QUERY in ['Query2', 'Query3']:
# ------------------------ STEP 2 ------------------------
car_types = []
for car_box in car_boxes:
# Using MobileNet to classify SUV or Sedan
car_type = get_car_type(car_box, model)
car_types.append(car_type)
if len(car_boxes) > 0:
query2_stats.append([frame_num, time.time() - start_time])
image = Image.fromarray(frame)
# Create annotations for video frame
for dims_car_box, car_type in zip(dims_car_boxes, car_types):
draw = ImageDraw.Draw(image)
if car_type == 'Sedan':
box_colour = (0, 0, 255) # Blue
else:
box_colour = (255, 0, 0) # Red
for i in range(3):
# Drawing a bounding box around car
draw.rectangle([dims_car_box['left'] + i, dims_car_box['top'] + i, dims_car_box['right'] - i,
dims_car_box['bottom'] - i], outline=box_colour)
# Adding a label to top left of the bounding box
label = f"{car_type}"
label_width, label_height = draw.textsize(label, font1)
draw.rectangle([dims_car_box['left'], dims_car_box['top'], dims_car_box['left'] + label_width,
dims_car_box['top'] + label_height], fill=box_colour)
draw.text((dims_car_box['left'], dims_car_box['top']), label, font=font1, fill=(0, 0, 0, 128))
# Add label to top left with count of cars
draw = ImageDraw.Draw(image)
label = f"Car Count: {len(car_boxes)}"
label_width, label_height = draw.textsize(label, font2)
draw.rectangle([0, 0, label_width, label_height], fill=(0, 0, 0)) # Black Rectangle
draw.text((0, 0), label, font=font2, fill=(255, 255, 255, 128)) # White text
annotated_frame = np.asarray(image)
cv2.imshow("Object Detection", annotated_frame)
# Write video
out.write(annotated_frame)
# ---------------------------------------------------------
process_time = time.time() - start_time
print(f'{round(process_time, 3)} s to process ...')
# Info message
if QUERY == 'Query1':
for _ in car_boxes:
print(f'Query1 : Car detected')
elif QUERY == 'Query2':
for car_type in car_types:
print(f'Query2 : {car_type} detected')
new_result[car_type] += 1
results[frame_num] = copy.deepcopy(new_result)
# Write results to file
csv_string = f"\n{frame_num}, {new_result['Sedan']}, " + \
f"{new_result['SUV']}, {new_result['Total']}"
with open('./results.csv', 'a') as f:
f.write(csv_string)
# Break the loop if "Q" is pressed
if cv2.waitKey(25) & 0xFF == ord('q'):
break
# Or if the queue is empty
elif frame_queue.empty():
break
elif cv2.waitKey(25) & 0xFF == ord('1'):
QUERY = 'Query1'
DO_ANALYSIS = False
elif cv2.waitKey(25) & 0xFF == ord('2'):
QUERY = 'Query2'
DO_ANALYSIS = False
throughput = time.time() - pipeline_start_time
with open('./output.txt', 'w') as f:
out_string = f'\nThroughput : {np.round(throughput, 4)} s\n'
print(out_string)
f.write(out_string)
# Save event extraction times
if QUERY == 'Query1':
query1_stats = np.array(query1_stats)
np.save("./query1_stats.npy", query1_stats)
elif QUERY == 'Query2':
query1_stats = np.array(query1_stats)
query2_stats = np.array(query2_stats)
np.save("./query1_stats.npy", query1_stats)
np.save("./query2_stats.npy", query2_stats)
out.release()
def get_car_bounding_boxes(frame, yolo):
# Convert to an image
image = Image.fromarray(frame)
# Using tiny YOLO to detect objects
r_image, object_boxes, time_value = yolo.detect_image(image)
# Iterate through all the objects detected in the frame
car_boxes = []
car_box_dims = []
for object_box in object_boxes:
# If the object detected is of type car
if object_box['class'] == 'car':
car_box_dims.append(object_box)
# Storing the bounding box dimensions
top = object_box['top']
left = object_box['left']
bottom = object_box['bottom']
right = object_box['right']
# get the bounding box of the object in the frame
car_box = frame[top:bottom, left:right] # Pass this to next stage of the pipeline
car_boxes.append(car_box)
return car_boxes, car_box_dims
def get_car_type(car_box, model):
new_car_box = Image.fromarray(car_box)
new_car_box = new_car_box.resize((160, 160), Image.ANTIALIAS)
result = np.asarray(new_car_box)
result = np.expand_dims(result, axis=0)
images = np.vstack([result])
classes = model.predict(images, batch_size=10)
print(classes)
if classes[0] > 0.55: # Classification threshold
car_type = 'Sedan'
else:
car_type = 'SUV'
return car_type
#Reference: https://machinelearningmastery.com/how-to-calculate-precision-recall-f1-and-more-for-deep-learning-models/
def compute_results():
names = ['Frame Number', 'Sedan', 'SUV', 'Total']
ground_truth = pd.read_excel("./Groundtruth.xlsx", index_col=0, names=names)
predictions = pd.read_csv("./results.csv", skiprows=1, index_col=0, names=names)
f1_scores = []
# Query1
y_true = ground_truth.loc[:, names[-1]].values
y_pred = predictions.loc[:, names[-1]].values
true_pos, false_pos, false_neg = get_tp_fp_fn(y_true, y_pred)
# Calculate F1-score
f1_scores.append(compute_f1score(true_pos, false_pos, false_neg))
# Query2
true_pos, false_pos, false_neg = 0, 0, 0
true_values = ground_truth[ground_truth['Total'].values != 0]
pred_values = predictions[ground_truth['Total'].values != 0]
for cols in (names[1], names[2]):
y_true = pd.DataFrame(true_values.loc[:, cols]).sum(axis=1).values
y_pred = pd.DataFrame(pred_values.loc[:, cols]).sum(axis=1).values
tp, fp, fn = get_tp_fp_fn(y_true, y_pred)
true_pos += tp
false_pos += fp
false_neg += fn
# Calculate F1-score
f1_scores.append(compute_f1score(true_pos, false_pos, false_neg))
plt.bar([f"Q{i}" for i in range(1, 3)], f1_scores)
plt.title('Query F1 Scores')
plt.grid(axis='y', alpha=0.5)
plt.ylim([0, 1])
plt.show()
# Print scores
with open('./output.txt', 'a') as f:
f.write('\nF1 Scores\n')
f.write('---------\n')
for i, f1 in enumerate(f1_scores):
f.write(f'Q{i + 1} : {round(f1, 3)}\n')
def compute_f1score(true_pos, false_pos, false_neg):
precision = true_pos / (true_pos + false_pos)
recall = true_pos / (true_pos + false_neg)
return 2 * (precision * recall) / (precision + recall)
def get_tp_fp_fn(y_true, y_pred):
true_pos, false_pos, false_neg = 0, 0, 0
for i in range(len(y_true)):
# Calculating True Positive's, False Positive's and False Negative's
if y_pred[i] <= y_true[i]:
true_pos += y_pred[i]
false_pos += 0
false_neg += y_true[i] - y_pred[i]
else:
true_pos += y_true[i]
false_pos += y_pred[i] - y_true[i]
false_neg += 0
return true_pos, false_pos, false_neg
def make_piecewise(stats):
N = stats.shape[0]
previous = stats[0, 0]
j = 1
for _ in range(1, N):
current = stats[j, 0]
if current != previous + 1:
# Insert NaN for frames with gaps that doesn't have any data
stats = np.insert(stats, j, np.array([np.nan, np.nan]), axis=0)
j += 1
previous = current
j += 1
return stats
if __name__ == '__main__':
# Create CSV file to store results
with open('./results.csv', 'w') as f:
csv_header = 'Frame Number, Sedan, SUV, Total'
f.write(csv_header)
# Creating a queue for storing video frames
frame_queue = Queue()
# creating two processes
process1 = Process(target=frame_processor, args=(frame_queue,))
process2 = Process(target=stream_video, args=(frame_queue,))
# starting the processes
process1.start()
process2.start()
# waiting for the started processes to complete
process1.join()
process2.join()
if QUERY == 'Query2' and DO_ANALYSIS == True:
# Compute F1-score for each query
compute_results()
# Plotting
query1_stats = np.load("./query1_stats.npy")
query2_stats = np.load("./query2_stats.npy")
with open('./output.txt', 'a') as f:
f.write('\nAverage extraction times\n')
f.write('------------------------\n')
for i, q_stats in enumerate([query1_stats, query2_stats]):
average_extraction = np.round(np.mean(q_stats[:, 1]), 4)
std_extraction = np.round(np.std(q_stats[:, 1]), 4)
f.write(f'Q{i + 1} : {average_extraction} +- {std_extraction} s\n')
query1_stats = make_piecewise(query1_stats)
query2_stats = make_piecewise(query2_stats)
plt.plot(query1_stats[:, 0], query1_stats[:, 1], 'g', alpha=1, linewidth=1)
plt.plot(query2_stats[:, 0], query2_stats[:, 1], 'b', alpha=0.7, linewidth=1)
plt.legend(['Query1', 'Query2'])
plt.title('Query Extraction Time')
plt.xlabel('Frame Number')
plt.ylabel('Time (seconds)')
plt.show()