We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b349ef0 commit 38c2d9eCopy full SHA for 38c2d9e
efficientdet_test.py
@@ -83,6 +83,8 @@ def display(preds, imgs, imshow=True, imwrite=False):
83
if len(preds[i]['rois']) == 0:
84
continue
85
86
+ imgs[i] = imgs[i].copy()
87
+
88
for j in range(len(preds[i]['rois'])):
89
x1, y1, x2, y2 = preds[i]['rois'][j].astype(np.int)
90
obj = obj_list[preds[i]['class_ids'][j]]
0 commit comments