From 9361292c429c0ba3400c31c7fa5d5e3d3cb6ab47 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Tue, 19 Jul 2016 21:50:01 +0000
Subject: [PATCH] updates
---
src/data.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/data.c b/src/data.c
index fcbdfc9..afd7506 100644
--- a/src/data.c
+++ b/src/data.c
@@ -297,11 +297,11 @@
if (w < .01 || h < .01) continue;
- truth[i*5+0] = id;
- truth[i*5+1] = x;
- truth[i*5+2] = y;
- truth[i*5+3] = w;
- truth[i*5+4] = h;
+ truth[i*5+0] = x;
+ truth[i*5+1] = y;
+ truth[i*5+2] = w;
+ truth[i*5+3] = h;
+ truth[i*5+4] = id;
}
free(boxes);
}
--
Gitblit v1.10.0