FaceData
Comprehensive data structure for a detected face. Contains information about the face's position, tracking, confidence, orientation, and feature token.
type FaceData = {
rect: FaceRect;
trackId: number;
detConfidence: number;
angle: FaceEulerAngle;
token: ArrayBuffer;
};
Properties
Property | Type | Description |
---|---|---|
rect | FaceRect | Rectangle defining the face region |
trackId | number | Unique identifier for tracking the face across frames |
detConfidence | number | Confidence score of the face detection |
angle | FaceEulerAngle | 3D orientation of the face |
token | ArrayBuffer | Binary token containing face feature data |