Skip to content

Commit

Permalink
chore(vision): fix typo (#3642)
Browse files Browse the repository at this point in the history
Please **merge for me** once approved. Thanks!
  • Loading branch information
Ace Nassri authored Jan 28, 2021
1 parent 93cf8bd commit a1144e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vision/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ $annotation = $client->annotateImage(

// Determine if the detected faces have headwear.
foreach ($annotation->getFaceAnnotations() as $faceAnnotation) {
$likelehood = Likelihood::name($faceAnnotation->getHeadwearLikelihood());
echo "Likelihood of headwear: $likelehood" . PHP_EOL;
$likelihood = Likelihood::name($faceAnnotation->getHeadwearLikelihood());
echo "Likelihood of headwear: $likelihood" . PHP_EOL;
}
```

Expand Down

0 comments on commit a1144e8

Please sign in to comment.