fix error with transformDetection() call

This commit is contained in:
Ruben van de Ven 2020-09-25 18:57:37 +02:00
parent c1f22570e8
commit d163e2a83a

View file

@ -360,8 +360,8 @@ function parseCoordinate(position) {
function transformDetection(original) {
let a = detection.points[36]; // outer point on left eye
let b = detection.points[45]; // outer point on right eye
let a = original.points[36]; // outer point on left eye
let b = original.points[45]; // outer point on right eye
let cx =a.x/2 + b.x/2
let cy = a.y/2 + b.y/2