Class Joints

  • All Implemented Interfaces:
    java.io.Serializable

    public class Joints
    extends java.lang.Object
    implements java.io.Serializable
    A result of all joints found during Human Pose Estimation on a single image.
    See Also:
    Wikipedia, Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  Joints.Joint
      A joint that was detected using Human Pose Estimation on an image.
    • Constructor Summary

      Constructors 
      Constructor Description
      Joints​(java.util.List<Joints.Joint> joints)
      Constructs the Joints with the provided joints.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<Joints.Joint> getJoints()
      Gets the joints for the image.
      java.lang.String toString()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Joints

        public Joints​(java.util.List<Joints.Joint> joints)
        Constructs the Joints with the provided joints.
        Parameters:
        joints - the joints
    • Method Detail

      • getJoints

        public java.util.List<Joints.Joint> getJoints()
        Gets the joints for the image.
        Returns:
        the list of joints
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object