NormalizedKeypoint
class NormalizedKeypoint : NSObjectNormalized 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.
- 
                  
                  The (x,y) coordinates location of the normalized keypoint. DeclarationSwift var location: CGPoint { get }
- 
                  
                  The optional label of the normalized keypoint. DeclarationSwift var label: String? { get }
- 
                  
                  The optional score of the normalized keypoint. If score is absent, it will be equal to 0.0. DeclarationSwift var score: Float { get }
- 
                  
                  Initializes a new NormalizedKeypointobject with the given location, label and score. You must pass 0.0 forscoreif it is not present.DeclarationSwift init(location: CGPoint, label: String?, score: Float)ParameterslocationThe (x,y) coordinates location of the normalized keypoint. labelThe optional label of the normalized keypoint. scoreThe optional score of the normalized keypoint. You must pass 0.0 for score if it is not present. Return ValueAn instance of NormalizedKeypointinitialized with the given given location, label and score.
- 
                  
                  Undocumented 
- 
                  
                  Undocumented