Last active
June 7, 2017 01:28
-
-
Save joetannenbaum/6a13375733506b00a8f38e4d5dd7ce39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Aws\Rekognition\RekognitionClient; | |
$rekognition = new RekognitionClient([ | |
'version' => 'latest', | |
'region' => 'AWS_REGION', | |
]); | |
$params = [ | |
'Attributes' => ['DEFAULT'], | |
'Image' => [ | |
'S3Object' => [ | |
'Bucket' => 'S3_BUCKET', | |
'Name' => 'OBJECT_KEY', | |
], | |
], | |
]; | |
$result = $rekognition->detectFaces($params); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment