Represents the face landmarks deection results generated by FaceLandmarker.
Signature:
export declare interface FaceLandmarkerResult 
Properties
| Property | Type | Description | 
|---|---|---|
| faceBlendshapes | Classifications[] | Optional face blendshapes results. | 
| faceLandmarks | NormalizedLandmark[][] | Detected face landmarks in normalized image coordinates. | 
| facialTransformationMatrixes | Matrix[] | Optional facial transformation matrix. | 
FaceLandmarkerResult.faceBlendshapes
Optional face blendshapes results.
Signature:
faceBlendshapes: Classifications[];
FaceLandmarkerResult.faceLandmarks
Detected face landmarks in normalized image coordinates.
Signature:
faceLandmarks: NormalizedLandmark[][];
FaceLandmarkerResult.facialTransformationMatrixes
Optional facial transformation matrix.
Signature:
facialTransformationMatrixes: Matrix[];