Download the PHP package bobbyshaw/ibm-watson-visual-recognition without Composer
On this page you can find all versions of the php package bobbyshaw/ibm-watson-visual-recognition. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bobbyshaw/ibm-watson-visual-recognition
More information about bobbyshaw/ibm-watson-visual-recognition
Files in bobbyshaw/ibm-watson-visual-recognition
Package ibm-watson-visual-recognition
Short Description A php library to provide API calls & handle authentication with the Bluemix visual recognition
License Apache-2.0
Homepage https://github.com/bobbyshaw/watson-visual-recognition-php
Informations about the package ibm-watson-visual-recognition
IBM Watson Visual Recognition API
This PHP library provides integration with the IBM Watson Visual Recognition service.
See API documentation.
Usage
The structure of this library was inspired by the Omnipay suite of packages.
One of the things that this means is the library doesn't hide away that fact that API requests are being made. For each API request, the request should be created with parameters passed in, sent and then response reviewed.
All requests are available via the Client.
use Bobbyshaw\WatsonVisualRecognition\Client;
use Bobbyshaw\WatsonVisualRecognition\Classifier;
$client = new Client();
The client should then be initialized with parameters, e.g. username and password (your IBM Watson Service credentials).
$client->initialize(['username' => 'abcdef', 'password' => '12356])
The following can be used find default parameters
$client->getDefaultParameters();
Each method matches an API request and returns a request object ready to be sent. Most of the time you'll want to send the request straight away.
$request = $client->getClassifiers();
$response = $request->send();
Each response has a class which helps to manage the response, e.g with the Classifier and Image classes.
/** @var Classifier[] $classifiers */
$classifiers = $response->getClassifiers();
Commands
The library also comes with a set of commands to use on the command line
Get Classifiers
php app/console classifiers:get [-d|--version-date="..."] username password
Classify Image(s)
php app/console classifiers:classify [-c|--classifiers="..."] [-d|--version-date="..."] username password images
Get Classifier Info
php app/console classifier:get [-d|--version-date="..."] username password classifier_id
Create/Train Classifier
php app/console classifier:create [-d|--version-date="..."] username password positive_examples negative_examples name
Delete Classifier
php app/console classifier:delete [-d|--version-date="..."] username password classifier_id
Testing
Run phpunit tests with:
vendor/bin/phpunit
This is also using grumphp to automatically check for PSR style formatting as well.
Test images are provided by Pixabay.
Documentation
PHPDocumentor is being used for creating library documentation. So make sure to add function comments
vendor/bin/
You may need to install graphViz on your machine if you don't already have it. This can be done on mac with homebrew
brew install graphviz
All versions of ibm-watson-visual-recognition with dependencies
guzzlehttp/guzzle Version 6.1.*
psr/http-message Version 1.0.*
symfony/console Version 2.6.*
symfony/http-foundation Version ~2.1