MPPNormalizedLandmark
@interface MPPNormalizedLandmark : NSObjectNormalized 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.
- 
                  
                  The x coordinates of the landmark. DeclarationObjective-C @property (nonatomic, readonly) float x;
- 
                  
                  The y coordinates of the landmark. DeclarationObjective-C @property (nonatomic, readonly) float y;
- 
                  
                  The z coordinates of the landmark. DeclarationObjective-C @property (nonatomic, readonly) float z;
- 
                  
                  Landmark visibility. Should be nilif not supported. Float score of whether landmark is visible or occluded by other objects. Landmark considered as invisible also if it is not present on the screen (out of scene bounds). Depending on the model, visibility value is either a sigmoid or an argument of sigmoid.DeclarationObjective-C @property (nonatomic, readonly, nullable) NSNumber *visibility;
- 
                  
                  Landmark presence. Should stay unset if not supported. Float score of whether landmark is present on the scene (located within scene bounds). Depending on the model, presence value is either a result of sigmoid or an argument of sigmoid function to get landmark presence probability. DeclarationObjective-C @property (nonatomic, readonly, nullable) NSNumber *presence;
- 
                  
                  Initializes a new NormalizedLandmarkobject with the given x, y and z coordinates.DeclarationObjective-C - (nonnull instancetype)initWithX:(float)x y:(float)y z:(float)z visibility:(nullable NSNumber *)visibility presence:(nullable NSNumber *)presence;ParametersxThe x coordinates of the landmark. yThe y coordinates of the landmark. zThe z coordinates of the landmark. Return ValueAn instance of NormalizedLandmarkinitialized with the given x, y and z coordinates.
- 
                  
                  Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C + (instancetype)new NS_UNAVAILABLE;