g4t/chooch

package for chooch ai . Chooch AI is a flexible computer vision platform for quickly creating accurate, useful AI models and deploying to the edge fast.

dev-main 2021-08-16 15:12 UTC

This package is auto-updated.

Last update: 2024-05-09 00:21:56 UTC


README

you can create your model and persons with personal images and Find the match between the pictures

image

Installation:

Require this package with composer using the following command:

composer require g4t/chooch
php artisan vendor:publish --provider=g4t\Chooch\ChoochServiceProvider

Usage

in your env file add chooch_token="token"
register here to get token https://app.chooch.ai/ and create model to get model_id

Add Chooch to your Controller.

use g4t\Chooch\Chooch;
Create Person with name in specific model
Chooch::CreatePerson('person name', $model_id);
Insert image to specific person
Chooch::InsertPrsonImage($person_id, $request->image);
Create person with image
Chooch::InsertPersonWithImage('person name', $request->image, $model_id);
Search in specific model using local image
Chooch::SearchLocal($request->image, $model_id);
Search in specific model using local image
Chooch::SearchURL($request->image, $model_id);

License

app.chooch.ai (laravel images recognition) is free software licensed under the MIT license.