Spaces:
Running
Running
Tobias Cornille
commited on
Commit
·
9620a3b
1
Parent(s):
2d1ab2c
Update index.js
Browse files
index.js
CHANGED
@@ -61,10 +61,10 @@ function renderBox({ box, label }) {
|
|
61 |
boxElement.className = 'bounding-box';
|
62 |
Object.assign(boxElement.style, {
|
63 |
borderColor: color,
|
64 |
-
left:
|
65 |
-
top:
|
66 |
-
width:
|
67 |
-
height:
|
68 |
})
|
69 |
|
70 |
// Draw label
|
|
|
61 |
boxElement.className = 'bounding-box';
|
62 |
Object.assign(boxElement.style, {
|
63 |
borderColor: color,
|
64 |
+
left: xmin + 'px',
|
65 |
+
top: ymin + 'px',
|
66 |
+
width: (xmax - xmin) + 'px',
|
67 |
+
height: (ymax - ymin) + 'px',
|
68 |
})
|
69 |
|
70 |
// Draw label
|