Alexey
2018-05-18 8b9af80a5b3bdb6ec17c4fa2cfa14ce4676ef1c3
src/box.c
@@ -246,7 +246,7 @@
    return 0;
}
void do_nms_sort(box *boxes, float **probs, int total, int classes, float thresh)
void do_nms_sort_v2(box *boxes, float **probs, int total, int classes, float thresh)
{
    int i, j, k;
    sortable_bbox *s = calloc(total, sizeof(sortable_bbox));
@@ -292,7 +292,7 @@
   return 0;
}
void do_nms_obj_v3(detection *dets, int total, int classes, float thresh)
void do_nms_obj(detection *dets, int total, int classes, float thresh)
{
   int i, j, k;
   k = total - 1;
@@ -328,7 +328,7 @@
   }
}
void do_nms_sort_v3(detection *dets, int total, int classes, float thresh)
void do_nms_sort(detection *dets, int total, int classes, float thresh)
{
   int i, j, k;
   k = total - 1;