Indicates the direction the eyes are gazing in (independent of the head pose) as determined by its pitch and yaw.

interface EyeDirection {
    Confidence?: number;
    Pitch?: number;
    Yaw?: number;
}

Properties

Confidence?: number

The confidence that the service has in its predicted eye direction.

Pitch?: number

Value representing eye direction on the pitch axis.

Yaw?: number

Value representing eye direction on the yaw axis.