FaceKeypoints

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

rightEyeOuterCorner

Right eye outer corner.

rightEyeCenter

Right eye center.

rightEyeInnerCorner

Right eye inner corner.

leftEyeInnerCorner

Left eye inner corner.

leftEyeCenter

Left eye center.

leftEyeOuterCorner

Left eye outer corner.

noseRoot

Nose root.

noseRightBottom

Right bottom nose.

noseTip

Nose tip.

noseLeftBottom

Left bottom nose.

noseBottom

Bottom nose.

mouthRightCorner

Right corner of the mouth.

mouthCenter

Mouth center.

mouthLeftCorner

Left corner of the mouth.

mouthUpperEdge

Upper edge of the mouth.

mouthLowerEdge

Lower edge of the mouth.

rightEyebrowOuterEnd

Right eyebrow outer end.

rightEyebrowInnerEnd

Right eyebrow inner end.

leftEyebrowInnerEnd

Left eyebrow inner end.

leftEyebrowOuterEnd

Left eyebrow outer end.

rightEdge

Right edge of the face.

chinTip

Chin tip.

leftEdge

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)

Properties

Link copied to clipboard
val chinTip: FaceKeypoint? = null
Link copied to clipboard
val leftEdge: FaceKeypoint? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val noseRoot: FaceKeypoint? = null
Link copied to clipboard
val noseTip: FaceKeypoint? = null
Link copied to clipboard
val rightEdge: FaceKeypoint? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard