Sets the optional ClassifierOptions controlling the canned gestures classifier, such as score threshold, allow list and deny list of gestures. The categories for canned gesture classifiers are: ["None", "Closed_Fist", "Open_Palm", "Pointing_Up", "Thumb_Down", "Thumb_Up", "Victory", "ILoveYou"]
Sets the optional ClassifierOptions controlling the canned gestures classifier, such as score threshold, allow list and deny list of gestures. The categories for canned gesture classifiers are: ["None", "Closed_Fist", "Open_Palm", "Pointing_Up", "Thumb_Down", "Thumb_Up", "Victory", "ILoveYou"]
[[["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,["# GestureRecognizerOptions interface\n\n\u003cbr /\u003e\n\nOptions to configure the MediaPipe Gesture Recognizer Task\n\n**Signature:** \n\n export declare interface GestureRecognizerOptions extends VisionTaskOptions \n\n**Extends:** VisionTaskOptions\n\nProperties\n----------\n\n| Property | Type | Description |\n|------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [cannedGesturesClassifierOptions](./tasks-vision.gesturerecognizeroptions#gesturerecognizeroptionscannedgesturesclassifieroptions) | ClassifierOptions \\| undefined | Sets the optional `ClassifierOptions` controlling the canned gestures classifier, such as score threshold, allow list and deny list of gestures. The categories for canned gesture classifiers are: \\[\"None\", \"Closed_Fist\", \"Open_Palm\", \"Pointing_Up\", \"Thumb_Down\", \"Thumb_Up\", \"Victory\", \"ILoveYou\"\\] |\n| [customGesturesClassifierOptions](./tasks-vision.gesturerecognizeroptions#gesturerecognizeroptionscustomgesturesclassifieroptions) | ClassifierOptions \\| undefined | Options for configuring the custom gestures classifier, such as score threshold, allow list and deny list of gestures. |\n| [minHandDetectionConfidence](./tasks-vision.gesturerecognizeroptions#gesturerecognizeroptionsminhanddetectionconfidence) | number \\| undefined | The minimum confidence score for the hand detection to be considered successful. Defaults to 0.5. |\n| [minHandPresenceConfidence](./tasks-vision.gesturerecognizeroptions#gesturerecognizeroptionsminhandpresenceconfidence) | number \\| undefined | The minimum confidence score of hand presence score in the hand landmark detection. Defaults to 0.5. |\n| [minTrackingConfidence](./tasks-vision.gesturerecognizeroptions#gesturerecognizeroptionsmintrackingconfidence) | number \\| undefined | The minimum confidence score for the hand tracking to be considered successful. Defaults to 0.5. |\n| [numHands](./tasks-vision.gesturerecognizeroptions#gesturerecognizeroptionsnumhands) | number \\| undefined | The maximum number of hands can be detected by the GestureRecognizer. Defaults to 1. |\n\nGestureRecognizerOptions.cannedGesturesClassifierOptions\n--------------------------------------------------------\n\nSets the optional `ClassifierOptions` controlling the canned gestures classifier, such as score threshold, allow list and deny list of gestures. The categories for canned gesture classifiers are: \\[\"None\", \"Closed_Fist\", \"Open_Palm\", \"Pointing_Up\", \"Thumb_Down\", \"Thumb_Up\", \"Victory\", \"ILoveYou\"\\]\n\n**Signature:** \n\n cannedGesturesClassifierOptions?: ClassifierOptions | undefined;\n\nGestureRecognizerOptions.customGesturesClassifierOptions\n--------------------------------------------------------\n\nOptions for configuring the custom gestures classifier, such as score threshold, allow list and deny list of gestures.\n\n**Signature:** \n\n customGesturesClassifierOptions?: ClassifierOptions | undefined;\n\nGestureRecognizerOptions.minHandDetectionConfidence\n---------------------------------------------------\n\nThe minimum confidence score for the hand detection to be considered successful. Defaults to 0.5.\n\n**Signature:** \n\n minHandDetectionConfidence?: number | undefined;\n\nGestureRecognizerOptions.minHandPresenceConfidence\n--------------------------------------------------\n\nThe minimum confidence score of hand presence score in the hand landmark detection. Defaults to 0.5.\n\n**Signature:** \n\n minHandPresenceConfidence?: number | undefined;\n\nGestureRecognizerOptions.minTrackingConfidence\n----------------------------------------------\n\nThe minimum confidence score for the hand tracking to be considered successful. Defaults to 0.5.\n\n**Signature:** \n\n minTrackingConfidence?: number | undefined;\n\nGestureRecognizerOptions.numHands\n---------------------------------\n\nThe maximum number of hands can be detected by the GestureRecognizer. Defaults to 1.\n\n**Signature:** \n\n numHands?: number | undefined;"]]