List of keypoints associated with the detection. Keypoints represent interesting points related to the detection. For example, the keypoints represent the eye, ear and mouth from face detection model. Or in the template matching detection, e.g. KNIFT, they can represent the feature points for template matching. Contains an empty list if no keypoints are detected.
Detection.boundingBox
The bounding box of the detected objects.
Signature:
boundingBox?:BoundingBox;
Detection.categories
A list of Category objects.
Signature:
categories:Category[];
Detection.keypoints
List of keypoints associated with the detection. Keypoints represent interesting points related to the detection. For example, the keypoints represent the eye, ear and mouth from face detection model. Or in the template matching detection, e.g. KNIFT, they can represent the feature points for template matching. Contains an empty list if no keypoints are detected.
[[["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,["# Detection interface\n\n\u003cbr /\u003e\n\nRepresents one detection by a detection task.\n\n**Signature:** \n\n export declare interface Detection \n\nProperties\n----------\n\n| Property | Type | Description |\n|--------------------------------------------------------------|-----------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [boundingBox](./tasks-vision.detection#detectionboundingbox) | [BoundingBox](./tasks-vision.boundingbox#boundingbox_interface) | The bounding box of the detected objects. |\n| [categories](./tasks-vision.detection#detectioncategories) | [Category](./tasks-vision.category#category_interface)\\[\\] | A list of `Category` objects. |\n| [keypoints](./tasks-vision.detection#detectionkeypoints) | NormalizedKeypoint\\[\\] | List of keypoints associated with the detection. Keypoints represent interesting points related to the detection. For example, the keypoints represent the eye, ear and mouth from face detection model. Or in the template matching detection, e.g. KNIFT, they can represent the feature points for template matching. Contains an empty list if no keypoints are detected. |\n\nDetection.boundingBox\n---------------------\n\nThe bounding box of the detected objects.\n\n**Signature:** \n\n boundingBox?: BoundingBox;\n\nDetection.categories\n--------------------\n\nA list of `Category` objects.\n\n**Signature:** \n\n categories: Category[];\n\nDetection.keypoints\n-------------------\n\nList of keypoints associated with the detection. Keypoints represent interesting points related to the detection. For example, the keypoints represent the eye, ear and mouth from face detection model. Or in the template matching detection, e.g. KNIFT, they can represent the feature points for template matching. Contains an empty list if no keypoints are detected.\n\n**Signature:** \n\n keypoints: NormalizedKeypoint[];"]]