Skip to main content

Computer Vision APIs Comparison (Facial Recognition)

Computer Vision APIs Comparison (Facial Recognition)

 
Different APIs are:
Google CV ,Watson VR,Amazon R,Microsoft CV, Clarif.ai,Cloudsight,Scale,Imagga,vize.ai,Kooaba,IQ Engines,LTU technologies,Face Recognition,Face (Detection),Animetrics Face Recognition,Skybiometry Face Detection and Recognition,Face++,FaceMark,EmoVu by Eyeris
Face and scene recognition by Rekognition.com,FaceRect,Betaface API,EyeFace,Kairos,TinEye API
and list goes on…

Comparison

Google CV
classifies images into thousands of categories (e.g., "sailboat", "lion", "Eiffel Tower"), detects individual and faces within images,emotions, and finds and reads printed words contained within images. Uses tensorflow
Face ++
Locate and return keypoints of face components, including face contour, eye, eyebrow, lip and nose contour. Face++ provides analysis with high-precision, most detailed landmarks with up to 106 points. Face++ landmarks fit the face seamlessly in images and videos.High-precision landmarks enables to apply sophisticated effects to face, such as face makeup, filters and avatar. (no text extraction from images)
Provides following functionalities:
Facial recognition
Face detection
Face searching
Face landmarks -with up to 106 points.
Face attributes
Ethinicity detection
Emotion recognition
Beauty score - Face++ can provide beauty scores of customers before and after makeup, enabling to recommend cosmetics to customers more precisely, and enhance shopping experience.
Gaze estimation
Body detection
body attributes
body outlining
gesture recognition
Kairos
Provides following functionalities:
Face Detection
Face Identification
Face Verification
Emotion Detection
Age Detection
Gender Detection
Multi-face Detection
Attention Measurement
Facial Features
Sentiment Detection
Face Grouping
Ethnicity Detection

(no text detection from image)


Comments

Popular posts from this blog

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 Scale https://www.scaleapi.com/image-annotation Imagga vize.ai https://vize.ai/ http://www.recognize.im/ Moodstocks ( http://www.moodstocks.com/pricing/ ) * Kooaba ( http://www.kooaba.com/en/plans_a... ) * IQ Engines ( https://www.iqengines.com/pricing/ ) * LTU technologies ( http://www.ltutech.com/ ) 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 mak...

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 ...