Face Keypoints
data class FaceKeypoints(val rightEyeOuterCorner: FaceKeypoint? = null, val rightEyeCenter: FaceKeypoint? = null, val rightEyeInnerCorner: FaceKeypoint? = null, val leftEyeInnerCorner: FaceKeypoint? = null, val leftEyeCenter: FaceKeypoint? = null, val leftEyeOuterCorner: FaceKeypoint? = null, val noseRoot: FaceKeypoint? = null, val noseRightBottom: FaceKeypoint? = null, val noseTip: FaceKeypoint? = null, val noseLeftBottom: FaceKeypoint? = null, val noseBottom: FaceKeypoint? = null, val mouthRightCorner: FaceKeypoint? = null, val mouthCenter: FaceKeypoint? = null, val mouthLeftCorner: FaceKeypoint? = null, val mouthUpperEdge: FaceKeypoint? = null, val mouthLowerEdge: FaceKeypoint? = null, val rightEyebrowOuterEnd: FaceKeypoint? = null, val rightEyebrowInnerEnd: FaceKeypoint? = null, val leftEyebrowInnerEnd: FaceKeypoint? = null, val leftEyebrowOuterEnd: FaceKeypoint? = null, val rightEdge: FaceKeypoint? = null, val chinTip: FaceKeypoint? = null, val leftEdge: FaceKeypoint? = null)
Data class that holds evaluated facial keypoints.
Parameters
right Eye Outer Corner
Right eye outer corner.
right Eye Center
Right eye center.
right Eye Inner Corner
Right eye inner corner.
left Eye Inner Corner
Left eye inner corner.
left Eye Center
Left eye center.
left Eye Outer Corner
Left eye outer corner.
nose Root
Nose root.
nose Right Bottom
Right bottom nose.
nose Tip
Nose tip.
nose Left Bottom
Left bottom nose.
nose Bottom
Bottom nose.
mouth Right Corner
Right corner of the mouth.
mouth Center
Mouth center.
mouth Left Corner
Left corner of the mouth.
mouth Upper Edge
Upper edge of the mouth.
mouth Lower Edge
Lower edge of the mouth.
right Eyebrow Outer End
Right eyebrow outer end.
right Eyebrow Inner End
Right eyebrow inner end.
left Eyebrow Inner End
Left eyebrow inner end.
left Eyebrow Outer End
Left eyebrow outer end.
right Edge
Right edge of the face.
chin Tip
Chin tip.
left Edge
Left edge of the face.
Constructors
Link copied to clipboard
fun FaceKeypoints(rightEyeOuterCorner: FaceKeypoint? = null, rightEyeCenter: FaceKeypoint? = null, rightEyeInnerCorner: FaceKeypoint? = null, leftEyeInnerCorner: FaceKeypoint? = null, leftEyeCenter: FaceKeypoint? = null, leftEyeOuterCorner: FaceKeypoint? = null, noseRoot: FaceKeypoint? = null, noseRightBottom: FaceKeypoint? = null, noseTip: FaceKeypoint? = null, noseLeftBottom: FaceKeypoint? = null, noseBottom: FaceKeypoint? = null, mouthRightCorner: FaceKeypoint? = null, mouthCenter: FaceKeypoint? = null, mouthLeftCorner: FaceKeypoint? = null, mouthUpperEdge: FaceKeypoint? = null, mouthLowerEdge: FaceKeypoint? = null, rightEyebrowOuterEnd: FaceKeypoint? = null, rightEyebrowInnerEnd: FaceKeypoint? = null, leftEyebrowInnerEnd: FaceKeypoint? = null, leftEyebrowOuterEnd: FaceKeypoint? = null, rightEdge: FaceKeypoint? = null, chinTip: FaceKeypoint? = null, leftEdge: FaceKeypoint? = null)