Normalized keypoint represents a point in 2D space with x, y coordinates. x and y are normalized
to [0.0, 1.0] by the image width and height respectively.
[[["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-08 UTC."],[],[],null,["# MediaPipeTasksVision Framework Reference\n\nNormalizedKeypoint\n==================\n\n class NormalizedKeypoint : NSObject\n\nNormalized keypoint represents a point in 2D space with x, y coordinates. x and y are normalized\nto \\[0.0, 1.0\\] by the image width and height respectively.\n- `\n ``\n ``\n `\n\n ### [location](#/c:objc(cs)MPPNormalizedKeypoint(py)location)\n\n `\n ` \n The (x,y) coordinates location of the normalized keypoint. \n\n #### Declaration\n\n Swift \n\n var location: CGPoint { get }\n\n- `\n ``\n ``\n `\n\n ### [label](#/c:objc(cs)MPPNormalizedKeypoint(py)label)\n\n `\n ` \n The optional label of the normalized keypoint. \n\n #### Declaration\n\n Swift \n\n var label: String? { get }\n\n- `\n ``\n ``\n `\n\n ### [score](#/c:objc(cs)MPPNormalizedKeypoint(py)score)\n\n `\n ` \n The optional score of the normalized keypoint. If score is absent, it will be equal to 0.0. \n\n #### Declaration\n\n Swift \n\n var score: Float { get }\n\n- `\n ``\n ``\n `\n\n ### [init(location:label:score:)](#/c:objc(cs)MPPNormalizedKeypoint(im)initWithLocation:label:score:)\n\n `\n ` \n Initializes a new `NormalizedKeypoint` object with the given location, label and score.\n You must pass 0.0 for [score](../Classes/NormalizedKeypoint.html#/c:objc(cs)MPPNormalizedKeypoint(py)score) if it is not present. \n\n #### Declaration\n\n Swift \n\n init(location: CGPoint, label: String?, score: Float)\n\n #### Parameters\n\n |------------------|--------------------------------------------------------------------------------------------------|\n | ` `*location*` ` | The (x,y) coordinates location of the normalized keypoint. |\n | ` `*label*` ` | The optional label of the normalized keypoint. |\n | ` `*score*` ` | The optional score of the normalized keypoint. You must pass 0.0 for score if it is not present. |\n\n #### Return Value\n\n An instance of `NormalizedKeypoint` initialized with the given given location, label\n and score.\n- `\n ``\n ``\n `\n\n ### [-init](#/c:objc(cs)MPPNormalizedKeypoint(im)init)\n\n `\n ` \n Undocumented\n- `\n ``\n ``\n `\n\n ### [+new](#/c:objc(cs)MPPNormalizedKeypoint(cm)new)\n\n `\n ` \n Undocumented"]]