From ee25ad42c5e9ecdc5a3aa7125e657ce26cc9535c Mon Sep 17 00:00:00 2001
From: Edmond Yoo <hj3yoo@uwaterloo.ca>
Date: Sun, 16 Sep 2018 02:48:50 +0000
Subject: [PATCH] temp
---
scripts/voc_label_difficult.py | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/voc_label_difficult.py b/scripts/voc_label_difficult.py
index 93e57fe..cfffce3 100644
--- a/scripts/voc_label_difficult.py
+++ b/scripts/voc_label_difficult.py
@@ -10,10 +10,10 @@
def convert(size, box):
- dw = 1./size[0]
- dh = 1./size[1]
- x = (box[0] + box[1])/2.0
- y = (box[2] + box[3])/2.0
+ dw = 1./(size[0])
+ dh = 1./(size[1])
+ x = (box[0] + box[1])/2.0 - 1
+ y = (box[2] + box[3])/2.0 - 1
w = box[1] - box[0]
h = box[3] - box[2]
x = x*dw
--
Gitblit v1.10.0