node-moving-things-tracker
Advanced tools
@@ -172,3 +172,3 @@ var uuidv4 = require('uuid/v4'); | ||
h: parseInt(this.h, 10), | ||
confidence: this.confidence, | ||
confidence: Math.round(this.confidence * 100) / 100, | ||
// Here we negate dy to be in "normal" carthesian coordinates | ||
@@ -190,3 +190,3 @@ bearing: parseInt(computeBearingIn360(this.velocity.dx, - this.velocity.dy)), | ||
h: parseInt(this.h, 10), | ||
confidence: this.confidence, | ||
confidence: Math.round(this.confidence * 100) / 100, | ||
// Here we negate dy to be in "normal" carthesian coordinates | ||
@@ -193,0 +193,0 @@ bearing: parseInt(computeBearingIn360(this.velocity.dx, - this.velocity.dy), 10), |
{ | ||
"name": "node-moving-things-tracker", | ||
"version": "0.5.3", | ||
"version": "0.5.4", | ||
"description": "Tracker by detections in javascript for node.js / browsers", | ||
@@ -5,0 +5,0 @@ "url": "https://github.com/tdurand/node-moving-things-tracker", |
76720
0.06%