Whether FaceLandmarker outputs facial transformation_matrix. Facial transformation matrix is used to transform the face landmarks in canonical face to the detected face, so that users can apply face effects on the detected landmarks.
FaceLandmarkerOptions.minFaceDetectionConfidence
The minimum confidence score for the face detection to be considered successful. Defaults to 0.5.
Signature:
minFaceDetectionConfidence?:number|undefined;
FaceLandmarkerOptions.minFacePresenceConfidence
The minimum confidence score of face presence score in the face landmark detection. Defaults to 0.5.
Signature:
minFacePresenceConfidence?:number|undefined;
FaceLandmarkerOptions.minTrackingConfidence
The minimum confidence score for the face tracking to be considered successful. Defaults to 0.5.
Signature:
minTrackingConfidence?:number|undefined;
FaceLandmarkerOptions.numFaces
The maximum number of faces can be detected by the FaceLandmarker. Defaults to 1.
Signature:
numFaces?:number|undefined;
FaceLandmarkerOptions.outputFaceBlendshapes
Whether FaceLandmarker outputs face blendshapes classification. Face blendshapes are used for rendering the 3D face model.
Whether FaceLandmarker outputs facial transformation_matrix. Facial transformation matrix is used to transform the face landmarks in canonical face to the detected face, so that users can apply face effects on the detected landmarks.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-05-07 UTC."],[],[],null,["# FaceLandmarkerOptions interface\n\n\u003cbr /\u003e\n\nOptions to configure the MediaPipe FaceLandmarker Task\n\n**Signature:** \n\n export declare interface FaceLandmarkerOptions extends VisionTaskOptions \n\n**Extends:** VisionTaskOptions\n\nProperties\n----------\n\n| Property | Type | Description |\n|------------------------------------------------------------------------------------------------------------------------------------|----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [minFaceDetectionConfidence](./tasks-vision.facelandmarkeroptions#facelandmarkeroptionsminfacedetectionconfidence) | number \\| undefined | The minimum confidence score for the face detection to be considered successful. Defaults to 0.5. |\n| [minFacePresenceConfidence](./tasks-vision.facelandmarkeroptions#facelandmarkeroptionsminfacepresenceconfidence) | number \\| undefined | The minimum confidence score of face presence score in the face landmark detection. Defaults to 0.5. |\n| [minTrackingConfidence](./tasks-vision.facelandmarkeroptions#facelandmarkeroptionsmintrackingconfidence) | number \\| undefined | The minimum confidence score for the face tracking to be considered successful. Defaults to 0.5. |\n| [numFaces](./tasks-vision.facelandmarkeroptions#facelandmarkeroptionsnumfaces) | number \\| undefined | The maximum number of faces can be detected by the FaceLandmarker. Defaults to 1. |\n| [outputFaceBlendshapes](./tasks-vision.facelandmarkeroptions#facelandmarkeroptionsoutputfaceblendshapes) | boolean \\| undefined | Whether FaceLandmarker outputs face blendshapes classification. Face blendshapes are used for rendering the 3D face model. |\n| [outputFacialTransformationMatrixes](./tasks-vision.facelandmarkeroptions#facelandmarkeroptionsoutputfacialtransformationmatrixes) | boolean \\| undefined | Whether FaceLandmarker outputs facial transformation_matrix. Facial transformation matrix is used to transform the face landmarks in canonical face to the detected face, so that users can apply face effects on the detected landmarks. |\n\nFaceLandmarkerOptions.minFaceDetectionConfidence\n------------------------------------------------\n\nThe minimum confidence score for the face detection to be considered successful. Defaults to 0.5.\n\n**Signature:** \n\n minFaceDetectionConfidence?: number | undefined;\n\nFaceLandmarkerOptions.minFacePresenceConfidence\n-----------------------------------------------\n\nThe minimum confidence score of face presence score in the face landmark detection. Defaults to 0.5.\n\n**Signature:** \n\n minFacePresenceConfidence?: number | undefined;\n\nFaceLandmarkerOptions.minTrackingConfidence\n-------------------------------------------\n\nThe minimum confidence score for the face tracking to be considered successful. Defaults to 0.5.\n\n**Signature:** \n\n minTrackingConfidence?: number | undefined;\n\nFaceLandmarkerOptions.numFaces\n------------------------------\n\nThe maximum number of faces can be detected by the FaceLandmarker. Defaults to 1.\n\n**Signature:** \n\n numFaces?: number | undefined;\n\nFaceLandmarkerOptions.outputFaceBlendshapes\n-------------------------------------------\n\nWhether FaceLandmarker outputs face blendshapes classification. Face blendshapes are used for rendering the 3D face model.\n\n**Signature:** \n\n outputFaceBlendshapes?: boolean | undefined;\n\nFaceLandmarkerOptions.outputFacialTransformationMatrixes\n--------------------------------------------------------\n\nWhether FaceLandmarker outputs facial transformation_matrix. Facial transformation matrix is used to transform the face landmarks in canonical face to the detected face, so that users can apply face effects on the detected landmarks.\n\n**Signature:** \n\n outputFacialTransformationMatrixes?: boolean | undefined;"]]