我想获得嘴巴的确切位置,但是我一直对每个坐标x,y和z保持0
。
我的代码:
const face = FaceTracking.face(0);
var tracker = Scene.root.child('Device').child('Camera').child('faceTracker0');
Patches.getPulseValue('pulseMouthOpen').subscribe(function (e) {
var loc = face.mouth.center;
Diagnostics.log(loc.x.pinLastValue());
});
代码在AR Studio中运行。
我想知道脸上的确切位置。我在做什么错了?