Google\Cloud\Vision\Annotation\Face\Landmarks::leftEye PHP Method

leftEye() public method

Example: $pos = $landmarks->leftEye(); echo "x position: ". $pos['x'] . PHP_EOL; echo "y position: ". $pos['y'] . PHP_EOL; echo "z position: ". $pos['z'] . PHP_EOL;
See also: https://cloud.google.com/vision/reference/rest/v1/images/annotate#position Position
public leftEye ( ) : array
return array
    public function leftEye()
    {
        return $this->getLandmark('LEFT_EYE');
    }