-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_btsd.py
389 lines (303 loc) · 13.6 KB
/
test_btsd.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
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
388
389
import tensorflow as tf
import datetime
import os
import argparse
# from yolo_models import Original_Yolo_Model
from btsd_yolo import BTSD_Yolo_Model
from timer import Timer
# from pascal_voc import pascal_voc
from btsd import btsd_reader
import skvideo.io
import cv2
import numpy as np
from architectures import *
import sys
sys.path.append('models/research/')
from models.research.object_detection.utils.object_detection_evaluation import *
# from utils.object_detection_evaluation import *
# from models.
# from object_detection import *
from object_detection.utils.object_detection_evaluation import *
# from object_detection_evaluation import *
from object_detection.core import standard_fields
# from object_detection.utils import object_detection_evaluation
class Detector(object):
def __init__(self, net, weight_file):
self.net = net
self.weights_file = weight_file
self.classes = CLASSES = ['triangle signs', 'red circle signs', 'blue circle signs',
'red and blue circle signs', 'diamond signs', 'reverse triangle signs', 'stop signs', \
'forbidden signs', 'square signs', 'vertical rectangle signs',
'horizontal rectangle signs', 'other traffic signs','undefined']
self.num_class = len(self.classes)
self.image_size = 448
self.cell_size = 7
self.boxes_per_cell = 2
self.threshold = 0.0001
self.iou_threshold = 0.5
self.boundary1 = self.cell_size * self.cell_size * self.num_class
self.boundary2 = self.boundary1 + self.cell_size * self.cell_size * self.boxes_per_cell
self.sess = tf.Session()
self.sess.run(tf.global_variables_initializer())
print 'Restoring weights from: ' + self.weights_file
self.saver = tf.train.Saver()
self.saver.restore(self.sess, self.weights_file)
def draw_result(self, img, result):
for i in range(len(result)):
x = int(result[i][1])
y = int(result[i][2])
w = int(result[i][3] / 2)
h = int(result[i][4] / 2)
cv2.rectangle(img, (x - w, y - h), (x + w, y + h), (0, 255, 0), 2)
cv2.rectangle(img, (x - w, y - h - 20),
(x + w, y - h), (125, 125, 125), -1)
cv2.putText(img, result[i][0] + ' : %.2f' % result[i][5], (x - w + 5, y - h - 7), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 0), 1, cv2.LINE_AA)
def detect(self, img):
# print 'detect'
img_h, img_w, _ = img.shape
inputs = cv2.resize(img, (self.image_size, self.image_size))
inputs = cv2.cvtColor(inputs, cv2.COLOR_BGR2RGB).astype(np.float32)
inputs = (inputs / 255.0) * 2.0 - 1.0
inputs = np.reshape(inputs, (1, self.image_size, self.image_size, 3))
result = self.detect_from_cvmat(inputs)[0]
for i in range(len(result)):
result[i][1] *= (1.0 * img_w / self.image_size)
result[i][2] *= (1.0 * img_h / self.image_size)
result[i][3] *= (1.0 * img_w / self.image_size)
result[i][4] *= (1.0 * img_h / self.image_size)
return result
def detect_from_cvmat(self, inputs):
# print 'dfcvm'
net_output = self.sess.run(self.net.logits,
feed_dict={self.net.images: inputs})
results = []
for i in range(net_output.shape[0]):
results.append(self.interpret_output(net_output[i]))
return results
def interpret_output(self, output):
# print 'intre_out'
probs = np.zeros((self.cell_size, self.cell_size,
self.boxes_per_cell, self.num_class))
class_probs = np.reshape(output[0:self.boundary1], (self.cell_size, self.cell_size, self.num_class))
scales = np.reshape(output[self.boundary1:self.boundary2], (self.cell_size, self.cell_size, self.boxes_per_cell))
boxes = np.reshape(output[self.boundary2:], (self.cell_size, self.cell_size, self.boxes_per_cell, 4))
offset = np.transpose(np.reshape(np.array([np.arange(self.cell_size)] * self.cell_size * self.boxes_per_cell),
[self.boxes_per_cell, self.cell_size, self.cell_size]), (1, 2, 0))
boxes[:, :, :, 0] += offset
boxes[:, :, :, 1] += np.transpose(offset, (1, 0, 2))
boxes[:, :, :, :2] = 1.0 * boxes[:, :, :, 0:2] / self.cell_size
boxes[:, :, :, 2:] = np.square(boxes[:, :, :, 2:])
boxes *= self.image_size
for i in range(self.boxes_per_cell):
for j in range(self.num_class):
probs[:, :, i, j] = np.multiply(
class_probs[:, :, j], scales[:, :, i])
filter_mat_probs = np.array(probs >= self.threshold, dtype='bool')
filter_mat_boxes = np.nonzero(filter_mat_probs)
boxes_filtered = boxes[filter_mat_boxes[0],
filter_mat_boxes[1], filter_mat_boxes[2]]
probs_filtered = probs[filter_mat_probs]
classes_num_filtered = np.argmax(filter_mat_probs, axis=3)[filter_mat_boxes[
0], filter_mat_boxes[1], filter_mat_boxes[2]]
argsort = np.array(np.argsort(probs_filtered))[::-1]
boxes_filtered = boxes_filtered[argsort]
probs_filtered = probs_filtered[argsort]
classes_num_filtered = classes_num_filtered[argsort]
for i in range(len(boxes_filtered)):
if probs_filtered[i] == 0:
continue
for j in range(i + 1, len(boxes_filtered)):
if self.iou(boxes_filtered[i], boxes_filtered[j]) > self.iou_threshold:
probs_filtered[j] = 0.0
filter_iou = np.array(probs_filtered > 0.0, dtype='bool')
boxes_filtered = boxes_filtered[filter_iou]
probs_filtered = probs_filtered[filter_iou]
classes_num_filtered = classes_num_filtered[filter_iou]
return boxes_filtered, probs_filtered, classes_num_filtered
# result = []
# for i in range(len(boxes_filtered)):
# result.append([self.classes[classes_num_filtered[i]], boxes_filtered[i][0], boxes_filtered[
# i][1], boxes_filtered[i][2], boxes_filtered[i][3], probs_filtered[i]])
# self.r = result
# return result
def iou(self, box1, box2):
tb = min(box1[0] + 0.5 * box1[2], box2[0] + 0.5 * box2[2]) - \
max(box1[0] - 0.5 * box1[2], box2[0] - 0.5 * box2[2])
lr = min(box1[1] + 0.5 * box1[3], box2[1] + 0.5 * box2[3]) - \
max(box1[1] - 0.5 * box1[3], box2[1] - 0.5 * box2[3])
if tb < 0 or lr < 0:
intersection = 0
else:
intersection = tb * lr
return intersection / (box1[2] * box1[3] + box2[2] * box2[3] - intersection)
def camera_detector(self, cap, wait=10):
detect_timer = Timer()
ret, _ = cap.read()
while ret:
ret, frame = cap.read()
detect_timer.tic()
result = self.detect(frame)
detect_timer.toc()
print('Average detecting time: {:.3f}s'.format(detect_timer.average_time))
# self.draw_result(frame, result)
# cv2.imshow('Camera', frame)
# cv2.waitKey(wait)
ret, frame = cap.read()
def image_detector(self, imname, wait=0):
print 'idetect'
detect_timer = Timer()
image = cv2.imread(imname)
# image = frame
detect_timer.tic()
result = self.detect(image)
detect_timer.toc()
print('Average detecting time: {:.3f}s'.format(detect_timer.average_time))
# self.draw_result(image, result)
# cv2.imshow('Image', image)
# cv2.waitKey(wait)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--weights', default="YOLO_small.ckpt", type=str)
parser.add_argument('--weight_dir', default='weights', type=str)
parser.add_argument('--data_dir', default="data", type=str)
parser.add_argument('--gpu', default='', type=str)
args = parser.parse_args()
os.environ['CUDA_VISIBLE_DEVICES'] = "0"
yolo = Original_Yolo_Model(False)
# print yolo
# exit(0)
weight_file = os.path.join('weights','YOLO_small.ckpt')
# weight_file = os.path.join('/home/vikram_mm/yolo_tensorflow/data/weights/YOLO_small.ckpt')
detector = Detector(yolo, weight_file)
# detect from camera
# cap = cv2.VideoCapture(-1)
# detector.camera_detector(cap)
# detect from image file
print "HERE"
# videogen = skvideo.io.vreader('/home/vikram_mm/yolo_tensorflow/test/videoplayback.mp4')
# for frame in videogen:
# print(frame.shape)
# #frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
# detector.image_detector(frame, wait=40)
# #cv2.imshow('frame',frame)
# # cv2.destroyAllWindows()
# # while(cap.isOpened()):
# ret, frame = cap.read()
# print frame.shape
# for k in ['000138.jpg','000147.jpg','000164.jpg'] :
# imname = '000138.jpg'
# imname = '000147.jpg'
imname = 'person.jpg'
detector.image_detector(imname)
print detector.r
# cap.release()
cv2.destroyAllWindows()
def test(net,data):
weight_file = os.path.join('saves','BTSD2018_03_10_18_28','save.ckpt-1801')
classes = ['triangle signs', 'red circle signs', 'blue circle signs',
'red and blue circle signs', 'diamond signs', 'reverse triangle signs', 'stop signs', \
'forbidden signs', 'square signs', 'vertical rectangle signs',
'horizontal rectangle signs', 'other traffic signs','undefined']
# print len(classes)
# exit(0)
dict_list=[]
i=1
for x in classes:
temp_dict={}
temp_dict['id'] = i
temp_dict['name'] = x
dict_list.append(temp_dict)
i+=1
evaluator = ObjectDetectionEvaluator(dict_list,0.3)
# evaluator = PascalDetectionEvaluator(dict_list,0.5)
print 'evaluator instantiated'
detector = Detector(net, weight_file)
eval_counter = 0
# exit(0)
for step in xrange(0, 2):
# load_timer.tic()
images, labels = data.get()
feed_dict = {net.images: images, net.labels: labels}
for i,image in enumerate(images):
# print labels.shape
object_present_indices = labels[i,:,:,0]==1
if(object_present_indices.size==0):
continue
# print object_present_indices
try:
gtbs= labels[i,object_present_indices,1:5]
# print gtbs
mgtb_list = [gtbs[:,1]-gtbs[:,3]/2,gtbs[:,0]-gtbs[:,2]/2,gtbs[:,1]+\
gtbs[:,3]/2,gtbs[:,0]+gtbs[:,2]/2]
# print mgtb_list
mgtb = np.array(mgtb_list).transpose(1,0)
# for x in mgtb_list:
# x = np.expand_dims(x,1)
# # mgtb = np.array([gtbs[:,1]-gtbs[:,3]/2,gtbs[:,0]-gtbs[:,2]/2,gtbs[:,1]+\
# # gtbs[:,3]/2,gtbs[:,0]+gtbs[:,2]/2])
# mgtb = np.hstack(mgtb_list)
# print mgtb
# exit(0)
class_ohlabels = labels[i,object_present_indices,5:]
# print class_ohlabels
# print 'class_ohlabels \n' , class_ohlabels
class_labels = np.where(class_ohlabels == 1)
# print
# print 'gt labels',class_labels[1]+1
# print gtb
# print gtb.shape
# exit(0)
evaluator.add_single_ground_truth_image_info(eval_counter,
{standard_fields.InputDataFields.groundtruth_boxes: mgtb,
standard_fields.InputDataFields.groundtruth_classes:
class_labels[1]+1})
# standard_fields.InputDataFields.groundtruth_difficult:
# np.array([], dtype=bool)})
# exit(0)
# print'added ground_truth'
# gt_dict[gt_counter] = {}
# for i,image in enumerate(images):
coords,probs,cl = detector.detect_from_cvmat(np.expand_dims(image,0))[0]
# print 'pred labels ',cl+1
# print 'pred coords ',coords
# print 'pred probs', probs
# exit(0)
coords_list = [coords[:,1]-coords[:,3]/2,coords[:,0]-coords[:,2]/2,coords[:,1]+\
coords[:,3]/2,coords[:,0]+coords[:,2]/2]
mcoords = np.array(coords_list).transpose(1,0)
# print coords
# print mcoords
# boxes = detector.interpret_output(net_output)
evaluator.add_single_detected_image_info(eval_counter,
{standard_fields.DetectionResultFields.detection_boxes: mcoords,
standard_fields.DetectionResultFields.detection_scores:
probs,
standard_fields.DetectionResultFields.detection_classes:
cl+1})
# print'added detection'
eval_counter+=1
if(eval_counter%100==0):
print eval_counter
# exit(0)
# if(eval_counter==10):
# break
# print 'done'
except:
print 'exception'
eval_counter+=1
# exit(0)
print evaluator.evaluate()
def new_main():
# os.environ['CUDA_VISIBLE_DEVICES'] = "0"
# yolo = Original_Yolo_Model()
yolo = BTSD_Yolo_Model(trial_model1)
# pascal = pascal_voc('val','/home/vikram_mm/yolo_tensorflow/data/')
reader = btsd_reader('train','data',yolo.batch_size)
# exit(0)
test(yolo,reader)
# print('Started testing ...')
# train(yolo,pascal)
# print('Done testing.')
if __name__ == '__main__':
# main()
new_main()