A plugin that is used with @nativescript/mlkit-core to enable face detection and provide the FaceResult type for the data of the face detection event.
Install @nativescript/mlkit-face-detection
by running the following command:
npm install @nativescript/mlkit-face-detection
For more details, read use @nativescript/mlkit-core and @nativescript/mlkit-core
The Face Detection event data type.
interface FaceResult {
smilingProbability: number;
leftEyeOpenProbability: number;
rightEyeOpenProbability: number;
trackingId: number;
bounds: Bounds;
headEulerAngleZ: number;
headEulerAngleY: number;
headEulerAngleX: number;
}
interface Bounds {
origin: Origin;
size: Size;
}
interface Origin {
x: number;
y: number;
}
interface Size {
width: number;
height: number;
}
Apache License Version 2.0