Fixed typo for calc_anchors

This commit is contained in:
AlexeyAB
2018-04-20 01:59:04 +03:00
parent c2c8595b08
commit 5767893292
4 changed files with 5 additions and 6 deletions

View File

@ -294,7 +294,6 @@ int nms_comparator_v3(const void *pa, const void *pb)
void do_nms_obj(detection *dets, int total, int classes, float thresh)
{
printf(" total = %d, classes = %d, thresh = %f \n", total, classes, thresh);
int i, j, k;
k = total - 1;
for (i = 0; i <= k; ++i) {