Face Detection

@nativescript/mlkit-face-detection

Installation

npm install @nativescript/mlkit-face-detection

Usage

import { DetectionType, DetectionEvent } from '@nativescript/mlkit-core';
import { FaceResult } from '@nativescript/mlkit-face-detection';
onDetection(event: DetectionEvent){
    if(event.type === DetectionType.Face){
        const faces: FaceResult[] = event.data;
    }
}