Packages

final case class Pose(type: String = "", keypoints: Seq[Keypoint] = _root_.scala.Seq.empty, actions: Seq[Action] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = ...) extends GeneratedMessage with Updatable[Pose] with Product with Serializable

The type represent the nature of the pose, i.e., pose2D, pose25D or pose3D,

which is followed by several Keypoints or bodyparts. Each Keypoint comprises of

-name,

-coordinate (x,y,z, confidence)

-quaternion (qx,qy,qz,qw), quaternion values are optional.

- e.g., |left-eye|x,y,z,0.75|qx,qy,qz,qw|.

-For pose3D, the coordinates (x,y,z) are in the world coordinate system with respect to the camera (unit: mm).

-For pose2.5D, it shares the same format as pose3D, however, the coordinates (x,y) are in the image plane (unit: pixel) and the z coordinate stands for the metric depth relative to the root keypoint, i.e., pelvis (unit: mm).

-For pose2D, (x,y) are the image pixel coordinates and the z coordinate is ignored, e.g., |right-ear,x,y,0.0.0.80|.

type

pose2D or pose3D or pose25D

keypoints

array of keypoints

actions

array of pose actons with their probabilities or confidence

Annotations
@SerialVersionUID()
Linear Supertypes
Updatable[Pose], GeneratedMessage, Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Pose
  2. Updatable
  3. GeneratedMessage
  4. Serializable
  5. Serializable
  6. Product
  7. Equals
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Pose(type: String = "", keypoints: Seq[Keypoint] = _root_.scala.Seq.empty, actions: Seq[Action] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = ...)

    type

    pose2D or pose3D or pose25D

    keypoints

    array of keypoints

    actions

    array of pose actons with their probabilities or confidence

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val actions: Seq[Action]
  5. def addActions(__vs: Action*): Pose
  6. def addAllActions(__vs: Iterable[Action]): Pose
  7. def addAllKeypoints(__vs: Iterable[Keypoint]): Pose
  8. def addKeypoints(__vs: Keypoint*): Pose
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clearActions: Pose
  11. def clearKeypoints: Pose
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  13. def companion: Pose.type
    Definition Classes
    Pose → GeneratedMessage
  14. def discardUnknownFields: Pose
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def getField(__field: FieldDescriptor): PValue
    Definition Classes
    Pose → GeneratedMessage
  18. def getFieldByNumber(__fieldNumber: Int): Any
    Definition Classes
    Pose → GeneratedMessage
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val keypoints: Seq[Keypoint]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def serializedSize: Int
    Definition Classes
    Pose → GeneratedMessage
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. final def toByteArray: Array[Byte]
    Definition Classes
    GeneratedMessage
  27. final def toByteString: ByteString
    Definition Classes
    GeneratedMessage
  28. final def toPMessage: PMessage
    Definition Classes
    GeneratedMessage
  29. def toProtoString: String
    Definition Classes
    Pose → GeneratedMessage
  30. val type: String
  31. val unknownFields: UnknownFieldSet
  32. def update(ms: (Lens[Pose, Pose]) ⇒ Mutation[Pose]*): Pose
    Definition Classes
    Updatable
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def withActions(__v: Seq[Action]): Pose
  37. def withKeypoints(__v: Seq[Keypoint]): Pose
  38. def withType(__v: String): Pose
  39. def withUnknownFields(__v: UnknownFieldSet): Pose
  40. final def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage
  41. def writeTo(_output__: CodedOutputStream): Unit
    Definition Classes
    Pose → GeneratedMessage
  42. final def writeTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Updatable[Pose]

Inherited from GeneratedMessage

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped