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
- Host: GitHub
- URL: https://github.com/kwn/recognizeimbundle
- Owner: kwn
- Created: 2015-01-09T14:29:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-16T12:50:01.000Z (about 10 years ago)
- Last Synced: 2025-02-12T18:55:24.643Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 160 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
KwnRecognizeImBundle
====================
[](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
```