2017 © Pedro Peláez
 

library google-cloud-vision-api-sample

google-cloud-vision-api-sample

image

yudaifujita0121/google-cloud-vision-api-sample

google-cloud-vision-api-sample

  • Friday, January 12, 2018
  • by yudaifujita0121
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

google cloud vision apiのサンプルプログラムです。

ラベル検出

$request = new \Kojirock\GoogleCloudVisionApiSample\LabelRequest($apiKey);
$request->setImagePath($imagePath);
$results = $request->call();

光学式文字認識

$request = new \Kojirock\GoogleCloudVisionApiSample\TextRequest($apiKey);
$request->setImagePath($imagePath);
$results = $request->call();

不適切なコンテンツの検出

$request = new \Kojirock\GoogleCloudVisionApiSample\SafeSearchRequest($apiKey);
$request->setImagePath($imagePath);
$results = $request->call();

顔検出

$request = new \Kojirock\GoogleCloudVisionApiSample\FaceRequest($apiKey);
$request->setImagePath($imagePath);
$results = $request->call();

ロゴ検出

$request = new \Kojirock\GoogleCloudVisionApiSample\LogoRequest($apiKey);
$request->setImagePath($imagePath);
$results = $request->call();

ランドマーク検出

$request = new \Kojirock\GoogleCloudVisionApiSample\LandmarkRequest($apiKey);
$request->setImagePath($imagePath);
$results = $request->call();

The Versions

12/01 2018

dev-master

9999999-dev https://github.com/yudaifujita0121/google-cloud-vision-api-sample

google-cloud-vision-api-sample

  Sources   Download

MIT

The Requires

 

by kojirock

api sample googlecloudvision