Pose
class Pose : NSObject
Describes a pose detection result.
-
An array of all the landmarks in the detected pose.
Declaration
Swift
var landmarks: [PoseLandmark] { get }
-
Unavailable.
-
Returns the landmark which corresponds to a given type.
Declaration
Swift
func landmark(ofType type: PoseLandmarkType) -> PoseLandmark
Parameters
type
The type of the landmark which should be returned.
Return Value
The landmark which corresponds to
type
.