我正在使用Google Vision API的网络检测功能,该功能直接取自此处的示例(https://cloud.google.com/vision/docs/detecting-web),我不知道如何通过 maxResults 参数传递该页面上的示例PHP代码。
有问题的代码是这样开始的:
$imageAnnotator = new ImageAnnotatorClient();
$image = file_get_contents($path);
$response = $imageAnnotator->webDetection($image);
$web = $response->getWebDetection();
有人使用此方法完成此操作吗?还是我需要以其他方式进行此操作?谢谢。