All Projects → PHPfanatic → clarifai

PHPfanatic / clarifai

Licence: MIT license
Clarifai PHP library for image recognition.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to clarifai

clarifai-php
Clarifai API client for PHP
Stars: ✭ 24 (+60%)
Mutual labels:  clarifai, image-recognition
Object-sorting-using-Robotic-arm-and-Image-processing
Sorting objects of different colors using robotic arm and using computer vision (image processing).
Stars: ✭ 21 (+40%)
Mutual labels:  image-recognition
MNIST
Handwritten digit recognizer using a feed-forward neural network and the MNIST dataset of 70,000 human-labeled handwritten digits.
Stars: ✭ 28 (+86.67%)
Mutual labels:  image-recognition
safety-gear-detector-python
Observe workers as they pass in front of a camera to determine if they have adequate safety protection.
Stars: ✭ 54 (+260%)
Mutual labels:  image-recognition
aml-keras-image-recognition
A sample Azure Machine Learning project for Transfer Learning-based custom image recognition by utilizing Keras.
Stars: ✭ 14 (-6.67%)
Mutual labels:  image-recognition
ICCV2021-Paper-Code-Interpretation
ICCV2021/2019/2017 论文/代码/解读/直播合集,极市团队整理
Stars: ✭ 2,022 (+13380%)
Mutual labels:  image-recognition
ai-image-recognition-web
Derin Öğrenme Kütüphanesi Keras ile Python Flask Web Framework Üzerinde Nesne Tanıma Uygulaması - https://vision-image-classify.herokuapp.com/
Stars: ✭ 24 (+60%)
Mutual labels:  image-recognition
CoreML-and-Vision-with-a-pre-trained-deep-learning-SSD-model
This project shows how to use CoreML and Vision with a pre-trained deep learning SSD (Single Shot MultiBox Detector) model. There are many variations of SSD. The one we’re going to use is MobileNetV2 as the backbone this model also has separable convolutions for the SSD layers, also known as SSDLite. This app can find the locations of several di…
Stars: ✭ 16 (+6.67%)
Mutual labels:  image-recognition
VideoRecognition-realtime-autotrainer-alerts
State of the art object detection in real-time using YOLOV3 algorithm. Augmented with a process that allows easy training of the classifier as a plug & play solution . Provides alert if an item in an alert list is detected.
Stars: ✭ 36 (+140%)
Mutual labels:  image-recognition
XCloud
Official Code for Paper <XCloud: Design and Implementation of AI Cloud Platform with RESTful API Service> (arXiv1912.10344)
Stars: ✭ 58 (+286.67%)
Mutual labels:  image-recognition
ImmunoLynk
[Lumiata COVID-19 Winner] COVID Immunity testing results registered to the Blockchain for healthcare safety.
Stars: ✭ 17 (+13.33%)
Mutual labels:  image-recognition
survey-computer-vision-2021
2021年计算机视觉技术综述分类汇总
Stars: ✭ 54 (+260%)
Mutual labels:  image-recognition
javascript-starter
A few simple examples to help you get started using the Clarifai Javascript client and API
Stars: ✭ 18 (+20%)
Mutual labels:  clarifai
Deep-Learning-CNN-for-Image-Recognition
Google TensorFlow project for classification using images or video input.
Stars: ✭ 33 (+120%)
Mutual labels:  image-recognition
concurrent-video-analytic-pipeline-optimization-sample-l
Create a concurrent video analysis pipeline featuring multistream face and human pose detection, vehicle attribute detection, and the ability to encode multiple videos to local storage in a single stream.
Stars: ✭ 39 (+160%)
Mutual labels:  image-recognition
python-opencv-crop
Crop images using contrast to background
Stars: ✭ 25 (+66.67%)
Mutual labels:  image-recognition
Covid-chest-Image-classification-from-Deep-Residual-Networks
No description or website provided.
Stars: ✭ 14 (-6.67%)
Mutual labels:  image-recognition
Look4Face
Demo of Face Recognition web service
Stars: ✭ 23 (+53.33%)
Mutual labels:  image-recognition
ocr recognition
use java opencv tesseract ocr image words detects and recognition,use python generate jTessBoxEditor train box file
Stars: ✭ 52 (+246.67%)
Mutual labels:  image-recognition
pytorch-vit
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale
Stars: ✭ 250 (+1566.67%)
Mutual labels:  image-recognition

Clarifai PHP Library

Build Status GitHub version

Clarifai API Library, PHP/Composer implementation of the clarifai api. (clarifai). PHPfanatic's PHP library brings you the power of clarifai's image recognition API wrapped in an easy to use PHP library that you can add to your own project easily with composer.

Build smarter apps faster with Clarifai’s powerful visual recognition technology.

Getting Started

Add the package to your composer implementation.

composer require phpfanatic/clarifai

or

Add the package manually by downloading the most recent stable version release from Github and include the src/ directory within your own project.

Requirements

  • PHP - 5.6, 7.0 - May work with ealier version, untested at this time.
  • cURL - *
  • Clarifai API Key - clarifai
  • PHPUnit - to run tests (optional).

Example Usage

use PhpFanatic\clarifAI\ImageClient;

$client = new ImageClient([API_KEY]);

$client->AddImage('http://phpfanatic.com/projects/clarifai/dog.jpg');
$result = $client->Predict();

Documentation

PHPfanatic - ClarifAI documentation

Change History

  • 2.0.1 - Patched clientversion variable.
  • 2.0.0 - Changed Clarifai authentication to use API Key method.
  • 1.2.3 - Added User-Agent Library header to outbound curl calls per Clarifai request.
  • 1.2.2 - Fixed malformed url bug when you paginate a get request. (credit: @mhdere)
  • 1.2.1 - Fixed urlencode bug (credit: keithslater), added additional Clarifai models.
  • 1.2.0 - Added model delete support, updated inputs to allow delete all.
  • 1.1.0 - Added multi language support.
  • 1.0.0 - Public API release.
  • 0.1.1 - Development alpha release.

Look Ahead (what might be changed in the future.)

  • Removing cURL as a requirement.
  • Combining POST,DELETE,PATCH into a single method.

Built With

Authors

License

This project is licensed under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].