Update threshold
Browse files
README.md
CHANGED
|
@@ -45,7 +45,7 @@ const yScale = height / resized_height;
|
|
| 45 |
|
| 46 |
// Define thresholds
|
| 47 |
const point_threshold = 0.3;
|
| 48 |
-
const box_threshold = 0.
|
| 49 |
|
| 50 |
// Display results
|
| 51 |
for (let i = 0; i < predicted_boxes.length; ++i) {
|
|
@@ -132,9 +132,6 @@ Found person at [512.82, 31.30, 662.28, 314.57] with score 0.451
|
|
| 132 |
- left_knee: (594.99, 244.95) with score 0.977
|
| 133 |
- right_knee: (533.72, 246.37) with score 0.504
|
| 134 |
- left_ankle: (598.47, 294.18) with score 0.844
|
| 135 |
-
Found person at [771.50, 136.02, 800.52, 278.18] with score 0.356
|
| 136 |
-
- right_shoulder: (792.82, 182.43) with score 0.819
|
| 137 |
-
- right_elbow: (794.75, 207.33) with score 0.753
|
| 138 |
```
|
| 139 |
|
| 140 |
</details>
|
|
|
|
| 45 |
|
| 46 |
// Define thresholds
|
| 47 |
const point_threshold = 0.3;
|
| 48 |
+
const box_threshold = 0.4;
|
| 49 |
|
| 50 |
// Display results
|
| 51 |
for (let i = 0; i < predicted_boxes.length; ++i) {
|
|
|
|
| 132 |
- left_knee: (594.99, 244.95) with score 0.977
|
| 133 |
- right_knee: (533.72, 246.37) with score 0.504
|
| 134 |
- left_ankle: (598.47, 294.18) with score 0.844
|
|
|
|
|
|
|
|
|
|
| 135 |
```
|
| 136 |
|
| 137 |
</details>
|