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\nMPPNormalizedKeypoint\n=====================\n\n\n @interface MPPNormalizedKeypoint : 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 Objective-C \n\n @property (nonatomic, readonly) CGPoint location;\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 Objective-C \n\n @property (nonatomic, readonly, nullable) NSString *label;\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 Objective-C \n\n @property (nonatomic, readonly) float score;\n\n- `\n ``\n ``\n `\n\n ### [-initWithLocation: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/MPPNormalizedKeypoint.html#/c:objc(cs)MPPNormalizedKeypoint(py)score) if it is not present. \n\n #### Declaration\n\n Objective-C \n\n - (nonnull instancetype)initWithLocation:(CGPoint)location\n label:(nullable NSString *)label\n score:(float)score;\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 #### Declaration\n\n Objective-C \n\n - (instancetype)init NS_UNAVAILABLE;\n\n- `\n ``\n ``\n `\n\n ### [+new](#/c:objc(cs)MPPNormalizedKeypoint(cm)new)\n\n `\n ` \n Undocumented \n\n #### Declaration\n\n Objective-C \n\n + (instancetype)new NS_UNAVAILABLE;"]]