Normalized Landmark represents a point in 3D space with x, y, z coordinates. x and y are normalized to [0.0, 1.0] by the image width and height respectively. z represents the landmark depth, and the smaller the value the closer the landmark is to the camera. The magnitude of z uses roughly the same scale as x.
[[["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,["# NormalizedLandmark interface\n\n\u003cbr /\u003e\n\nNormalized Landmark represents a point in 3D space with x, y, z coordinates. x and y are normalized to \\[0.0, 1.0\\] by the image width and height respectively. z represents the landmark depth, and the smaller the value the closer the landmark is to the camera. The magnitude of z uses roughly the same scale as x.\n\n**Signature:** \n\n export declare interface NormalizedLandmark \n\nProperties\n----------\n\n| Property | Type | Description |\n|------------------------------------------------------------------------------|--------|----------------------------------------------------------------|\n| [visibility](./tasks-vision.normalizedlandmark#normalizedlandmarkvisibility) | number | The likelihood of the landmark being visible within the image. |\n| [x](./tasks-vision.normalizedlandmark#normalizedlandmarkx) | number | The x coordinates of the normalized landmark. |\n| [y](./tasks-vision.normalizedlandmark#normalizedlandmarky) | number | The y coordinates of the normalized landmark. |\n| [z](./tasks-vision.normalizedlandmark#normalizedlandmarkz) | number | The z coordinates of the normalized landmark. |\n\nNormalizedLandmark.visibility\n-----------------------------\n\nThe likelihood of the landmark being visible within the image.\n\n**Signature:** \n\n visibility: number;\n\nNormalizedLandmark.x\n--------------------\n\nThe x coordinates of the normalized landmark.\n\n**Signature:** \n\n x: number;\n\nNormalizedLandmark.y\n--------------------\n\nThe y coordinates of the normalized landmark.\n\n**Signature:** \n\n y: number;\n\nNormalizedLandmark.z\n--------------------\n\nThe z coordinates of the normalized landmark.\n\n**Signature:** \n\n z: number;"]]