An open API service indexing awesome lists of open source software.

https://github.com/kwn/recognizeimbundle

Symfony2 bundle integrating Recognize.im client. Allows image recognizing, includes REST and SOAP API client
https://github.com/kwn/recognizeimbundle

Last synced: about 2 months ago
JSON representation

Symfony2 bundle integrating Recognize.im client. Allows image recognizing, includes REST and SOAP API client

Awesome Lists containing this project

README

        

KwnRecognizeImBundle
====================
[![Code Climate](https://codeclimate.com/github/kwn/RecognizeImBundle/badges/gpa.svg)](https://codeclimate.com/github/kwn/RecognizeImBundle)

This bundle integrates [RecognizeIm](https://github.com/kwn/RecognizeIm) client with Symfony 2.

Installation
------------

Add KwnRecognizeImBundle to your composer.json:

```js
{
"require": {
"kwn/recognizeim-bundle": "dev-master"
}
}
```

Run update command:

```bash
$ php composer.phar update kwn/recognizeim-bundle
```

Enable bundle in AppKernel.php:

```php
get('recognizeim')->getRestApiClient()->recognize($image, 'multi');
```

There's a command for building RecognizeIm index as well:

```bash
$ php app/console recognizeim:build-index
```