-
Notifications
You must be signed in to change notification settings - Fork 9
/
my_eval.py
304 lines (258 loc) · 10.1 KB
/
my_eval.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
# --------------------------------------------------------
# Fast/er R-CNN
# Licensed under The MIT License [see LICENSE for details]
# Written by Bharath Hariharan
# --------------------------------------------------------
import os,sys
# import cPickle
import _pickle as cPickle
# import pickle
import numpy as np
import shutil
sys.path.append("stats")
from eval_ap import parse_rec
from eval_all import get_image_txt_name
from utils import load_class_names, read_data_cfg
# from utils import get_all_boxes, bbox_iou, nms, read_data_cfg, load_class_names
def compute_ap(rec, prec, use_07_metric=False):
""" ap = compute_ap(rec, prec, [use_07_metric])
Compute VOC AP given precision and recall.
If use_07_metric is true, uses the
VOC 07 11 point method (default:False).
"""
if use_07_metric:
# 11 point metric
ap = 0.
for t in np.arange(0., 1.1, 0.1):
if np.sum(rec >= t) == 0:
p = 0
else:
p = np.max(prec[rec >= t])
ap = ap + p / 11.
else:
# correct AP calculation
# first append sentinel values at the end
mrec = np.concatenate(([0.], rec, [1.]))
mpre = np.concatenate(([0.], prec, [0.]))
# compute the precision envelope
for i in range(mpre.size - 1, 0, -1):
mpre[i - 1] = np.maximum(mpre[i - 1], mpre[i])
# to calculate area under PR curve, look for points
# where X axis (recall) changes value
i = np.where(mrec[1:] != mrec[:-1])[0]
# and sum (\Delta recall) * prec
ap = np.sum((mrec[i + 1] - mrec[i]) * mpre[i + 1])
return ap
def my_eval(detpath, imagesetfile, classname, cachedir, classlist,
ovthresh=0.5, use_07_metric=False):
"""rec, prec, ap = my_eval(detpath,
imagesetfile,
classname,
[ovthresh],
[use_07_metric])
Top level function that does the PASCAL VOC evaluation.
detpath: Path to detections
detpath.format(classname) should produce the detection results file.
annopath: Path to annotations
annopath.format(imagename) should be the xml annotations file.
imagesetfile: Text file containing the list of images, one image per line.
classname: Category name (duh)
cachedir: Directory for caching the annotations
[ovthresh]: Overlap threshold (default = 0.5)
[use_07_metric]: Whether to use VOC07's 11 point AP computation
(default False)
"""
# assumes detections are in detpath.format(classname)
# assumes annotations are in annopath.format(imagename)
# assumes imagesetfile is a text file with each line an image name
# cachedir caches the annotations in a pickle file
# first load gt
if not os.path.isdir(cachedir):
os.mkdir(cachedir)
cachefile = os.path.join(cachedir, 'annots.pkl')
# read list of images
with open(imagesetfile, 'r') as f:
lines = f.readlines()
imagenames = [x.strip() for x in lines]
if not os.path.isfile(cachefile):
# load annots
recs = {}
for i, imagename in enumerate(imagenames):
imagekey = os.path.basename(imagename).split('.')[0]
# recs[imagekey] = parse_rec(get_image_xml_name(imagename))
recs[imagekey] = parse_rec(get_image_txt_name(imagename),classlist)
# if i % 100 == 0:
# print ('Reading annotation for {:d}/{:d}'.format(i + 1, len(imagenames)))
# save
# print ('Saving cached annotations to {:s}'.format(cachefile))
with open(cachefile, 'wb') as f:
cPickle.dump(recs, f)
else:
# load
with open(cachefile, 'rb') as f:
recs = cPickle.load(f)
# extract gt objects for this class
class_recs = {}
npos = 0
for imagename in imagenames:
imagekey = os.path.basename(imagename).split('.')[0]
# print('image name: ',imagename)
# print('image key: ',imagekey)
try:
R = [obj for obj in recs[imagekey] if obj['name'] == classname]
except:
print('Error because exits cache folder')
print("%s %s" % (imagename, imagekey))
exit(0)
bbox = np.array([x['bbox'] for x in R])
difficult = np.array([x['difficult'] for x in R]).astype(np.bool)
det = [False] * len(R)
npos = npos + sum(~difficult)
class_recs[imagekey] = {'bbox': bbox,
'difficult': difficult,
'det': det}
# read dets
detfile = detpath.format(classname)
with open(detfile, 'r') as f:
lines = f.readlines()
splitlines = [x.strip().split(' ') for x in lines]
image_ids = [x[0] for x in splitlines]
confidence = np.array([float(x[1]) for x in splitlines])
BB = np.array([[float(z) for z in x[2:]] for x in splitlines])
# sort by confidence
sorted_ind = np.argsort(-confidence)
sorted_scores = np.sort(-confidence)
if len(sorted_ind) > 0:
BB = BB[sorted_ind, :]
image_ids = [image_ids[x] for x in sorted_ind]
# go down dets and mark TPs and FPs
nd = len(image_ids)
tp = np.zeros(nd)
fp = np.zeros(nd)
for d in range(nd):
R = class_recs[image_ids[d]]
bb = BB[d, :].astype(float)
ovmax = -np.inf
BBGT = R['bbox'].astype(float)
if BBGT.size > 0:
# compute overlaps
# intersection
ixmin = np.maximum(BBGT[:, 0], bb[0])
iymin = np.maximum(BBGT[:, 1], bb[1])
ixmax = np.minimum(BBGT[:, 2], bb[2])
iymax = np.minimum(BBGT[:, 3], bb[3])
iw = np.maximum(ixmax - ixmin + 1., 0.)
ih = np.maximum(iymax - iymin + 1., 0.)
inters = iw * ih
# union
uni = ((bb[2] - bb[0] + 1.) * (bb[3] - bb[1] + 1.) +
(BBGT[:, 2] - BBGT[:, 0] + 1.) *
(BBGT[:, 3] - BBGT[:, 1] + 1.) - inters)
overlaps = inters / uni
ovmax = np.max(overlaps)
jmax = np.argmax(overlaps)
if ovmax > ovthresh:
if not R['difficult'][jmax]:
if not R['det'][jmax]:
tp[d] = 1.
R['det'][jmax] = 1
else:
fp[d] = 1.
else:
fp[d] = 1.
# compute precision recall
fp = np.cumsum(fp)
tp = np.cumsum(tp)
rec = tp / float(npos)
# avoid divide by zero in case the first detection matches a difficult
# ground truth
prec = tp / np.maximum(tp + fp, np.finfo(np.float64).eps)
ap = compute_ap(rec, prec, use_07_metric)
#print('class: {:<10s} \t num occurrence: {:4d}'.format(classname, npos))
return rec, prec, ap, npos
def _do_python_eval(res_prefix, imagesetfile, classesfile, output_dir = 'output'):
filename = res_prefix + '{:s}.txt'
if os.path.exists(output_dir):
shutil.rmtree(output_dir)
os.mkdir(output_dir)
cachedir = os.path.join(output_dir, 'annotations_cache')
aps = []
# The PASCAL VOC metric changed in 2010
use_07_metric = False
#print ('VOC07 metric? ' + ('Yes' if use_07_metric else 'No'))
_classes = load_class_names(classesfile)
total = 0
for i, cls in enumerate(_classes):
if cls == '__background__':
continue
rec, prec, ap, noccur = my_eval(
filename, imagesetfile, cls, cachedir, _classes, ovthresh=0.5,
use_07_metric=use_07_metric)
aps += [ap]
total += noccur
# print('AP for {:<10s} = {:.4f} with {:4d} views'.format(cls, ap, noccur))
with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
cPickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
# print('Mean AP = {:.4f} with total {:4d} views'.format(np.mean(aps), total))
#
# print('~'*30)
# print(' '*10, 'Results:')
# print('-'*30)
# for i, ap in enumerate(aps):
# print('{:<10s}\t{:.3f}'.format(_classes[i], ap))
# print('='*30)
mAP = np.mean(aps)
# print('{:^10s}\t{:.3f}'.format('Average', mAP))
# print('~'*30)
# print('done')
return mAP
def Evaluation_from_Valid(res_prefix, imagesetfile, classesfile, output_dir='output'):
filename = res_prefix + '{:s}.txt'
if os.path.exists(output_dir):
shutil.rmtree(output_dir)
os.mkdir(output_dir)
cachedir = os.path.join(output_dir, 'annotations_cache')
aps = []
# The PASCAL VOC metric changed in 2010
use_07_metric = False
# print ('VOC07 metric? ' + ('Yes' if use_07_metric else 'No'))
_classes = load_class_names(classesfile)
total = 0
for i, cls in enumerate(_classes):
if cls == '__background__':
continue
rec, prec, ap, noccur = my_eval(
filename, imagesetfile, cls, cachedir, _classes, ovthresh=0.5,
use_07_metric=use_07_metric)
aps += [ap]
total += noccur
print('AP for {:<10s} = {:.4f} with {:4d} views'.format(cls, ap, noccur))
with open(os.path.join(output_dir, cls + '_pr.pkl'), 'wb') as f:
cPickle.dump({'rec': rec, 'prec': prec, 'ap': ap}, f)
print('Mean AP = {:.4f} with total {:4d} views'.format(np.mean(aps), total))
print('~' * 30)
print(' ' * 10, 'Results:')
print('-' * 30)
for i, ap in enumerate(aps):
print('{:<10s}\t{:.3f}'.format(_classes[i], ap))
print('=' * 30)
mAP = np.mean(aps)
print('{:^10s}\t{:.3f}'.format('Average', mAP))
print('~' * 30)
print('done')
print('precision: ' % (prec))
print('recall: ' % (rec))
return mAP
if __name__ == '__main__':
try:
if len(sys.argv) == 1:
datacfg = 'data/flir.data'
elif len(sys.argv) == 2:
datacfg = sys.argv[1]
options = read_data_cfg(datacfg)
test_file = options['valid']
res_prefix = 'results/det_test_'
class_names = options['names']
_map = Evaluation_from_Valid(res_prefix, test_file, class_names, output_dir = 'output')
except:
print('Using: python my_eval.py [data/file.data]')