andaris/computer-vision-client

Simple PHP Client for the Microsoft Computer Vision API

0.2.0 2018-02-07 08:06 UTC

This package is not auto-updated.

Last update: 2024-05-03 20:19:11 UTC


README

Build Status Scrutinizer Code Quality Code Coverage

Computer Vision API Client

This library provides a simple client for Microsoft's Computer Vision API using the Guzzle PHP HTTP client.

Requirements

  • PHP 5.5 or higher
  • PHP CURL extension

Installation (Composer)

This library is published as a Composer package, so Composer is the recommended way to install it.

Add computer-vision-client to your application's composer.json file:

{
    "require": {
        "andaris/computer-vision-client": "0.1.0"
    }
}

Navigate to your project root and run:

$ composer install

Make sure that the Composer autoloader is in your project's bootstrap.

Usage

use Andaris\ComputerVision\Client;

$imageData = file_get_contents('/path/to/image.jpg');
$client = new Client('14758f1afd44c09b7992073ccf00b43d'); // Insert your API key
$result = $client->analyze($imageData, [Client::FEATURE_CATEGORIES, Client::FEATURE_TAGS]);

Testing

The PHPUnit test suite can be run via vendor/bin/phpunit.