Skip to main content

List of Computer Vision APIs

Computer Vision APIs

Different computer vision tools and APIs are :

Google CV
Watson VR
Amazon R
Microsoft CV
Clarif.ai
Cloudsight
Imagga
Camfind - Image recognition back-end for the popular app CamFind. Take advantage of the leading image recognition platform through an easy to use web API.

Recognize API | Mashape - Vufind Recognize is a real-time image recognition API for classification and monetization of photos and videos. Recognize uses object recognition to uncover meaning and metadata of photos and videos for contextual image commerce and advertising.

Kooaba - Our cloud-based image recognition solutions
make it easy to integrate state-of-the-art visual recognition in your apps.

Recognize.im - Create your own mobile application with image recognition technology. Choose from unlimited interaction possibilities.

Moodstocks - Supersonic image recognition for your mobile apps.

Catchoom - Build Catchoom image recognition into your apps and link physical objects to customized digital experiences.

LTU Technologies (Cloud API) - A visual search API to recognize paintings, movie posters, CD covers, game covers, products and more.

Imagga API - is the programming interface to their image recognition and processing technologies available as a set of web services

TinEye API - TinEye is a reverse image search engine. You can submit an image to TinEye to find out where it came from, how it is being used or if modified versions of the image exist. TinEye uses image recognition to perform its searches

Pictorria - is a platform for sharing image recognition algorithms.

Picitup API - Bridge the gap between online and offline shopping with visual product search

Orpix - offers vehicle and logo recognition as a web service

6px.io - an elegant API for processing and analyzing images

LogoGrab - Let your customers scan your logo wherever found
to access engaging content such as promotions,
social awareness material or direct puchase links.
Adoriasoft


Catchoom’s Image Recognition API is a RESTful API equipped with several client mobile SDKs available in several languages, with fast responses around the globe thanks to the server structure.

If you wanna to try facial recognition, Face++(Leading Face Recognition on Cloud) would be in the first consideration. It's all free and rather easy-to-use.
Hope to help!


OCR APIs
https://azure.microsoft.com/en-in/services/cognitive-services/computer-vision/

Comments

Popular posts from this blog

Cat Vs Dog Classification Using TensorFlow CNN

This code is copy of - https://www.kaggle.com/sentdex/full-classification-example-with-convnet/notebook - work.  I have tried this code and executed successfully. Description: The data set (training and test) are taken from Kaggle Dog vs Cat competition.  https://www.kaggle.com/c/dogs-vs-cats-redux-kernels-edition/data In this the training data is encoded into an array containing the feature of each image plus its corresponding label. Functions used for this are : label_img() and create_training_data() . Similarly preprocessing is done for test data set also. The test data set images are stored as numpy array with its corresponding IDs. Function used is :process_test_data Numpy is used for preprocessing the image data into arrays. Using Tensorflow '- tflearn a DNN model is created. Here it has six convolutional layers followed by maxpool layers . Activation function used is 'RELU'. Then One fully connected layer with drop out and then softmax regression is also ...