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

rightEye() public method

Example: $pos = $landmarks->rightEye(); 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 rightEye ( ) : array
return array
    public function rightEye()
    {
        return $this->getLandmark('RIGHT_EYE');
    }