Package ai.djl.modality.cv.output
Class Joints
- java.lang.Object
-
- ai.djl.modality.cv.output.Joints
-
- All Implemented Interfaces:
java.io.Serializable
public class Joints extends java.lang.Object implements java.io.SerializableA 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 classJoints.JointA joint that was detected using Human Pose Estimation on an image.
-
Constructor Summary
Constructors Constructor Description Joints(java.util.List<Joints.Joint> joints)Constructs theJointswith 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.StringtoString()
-
-
-
Constructor Detail
-
Joints
public Joints(java.util.List<Joints.Joint> joints)
Constructs theJointswith 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:
toStringin classjava.lang.Object
-
-