UNPKG

react-native-vision-camera-face-detector

Version:

Frame Processor Plugin to detect faces using MLKit Vision Face Detector for React Native Vision Camera!

20 lines 691 B
import type { HybridObject } from 'react-native-nitro-modules'; import type { Bounds } from './Bounds'; import type { Contours } from './Contours'; import type { Landmarks } from './Landmarks'; export interface Face extends HybridObject<{ ios: 'swift'; android: 'kotlin'; }> { readonly landmarks?: Landmarks; readonly contours?: Contours; readonly bounds: Bounds; readonly leftEyeOpenProbability?: number; readonly rightEyeOpenProbability?: number; readonly smilingProbability?: number; readonly trackingId?: number; readonly pitchAngle: number; readonly rollAngle: number; readonly yawAngle: number; } //# sourceMappingURL=Face.nitro.d.ts.map