Facial Recognition API with Vision AI

Face API

Machine vision can automatically detect and use facial recognition to analyze gender and age. The facial recognition API can also be used to detect celebrities and groups of people for automatic tagging functionality. Combine Face API with astica Descriptive Vision to identify people and activities within images and video.



Face API Online

Identify celebrities and people with Face Recognition by Vision AI to detect age and gender.

Note that this is a basic demo. Please try the new advanced vision AI demo

Click to load Load Face API Samples
Click to Load Face API Samples    OR   
 

Available with asticaVision API:


Notice
Guest access is at high volume. Please create a free account for faster demo responses.

Integrate asticaVision
With 1 Line of Code

Powerful computer vision to describe images, detect faces and objects, and moderate uploaded images.

Rest API also available from your account dashboard  (PHP / Python / Javascript / More) Go to Dashboard

<script src="https://astica.ai/javascript-sdk/2023-07-09/astica.api.js"></script>
<script>
    asticaAPI_start('API KEY HERE'); //run at least once    
   
    //Example 1:   
    asticaVision('Image URL or Base64', 'Objects'); //simple computer vision  
    
    
    //Example 2:   
    asticaVision('Image URL', 'Description,Faces,Objects'); //with options:
  
  
    //Example 3:   
    asticaVision('https://astica.ai/example/asticaVision_sample.jpg'); //advanced, simple
    
    
    //Example 4:      
    //advanced with parameters:
    asticaVision(
        '1.0_full', //modelVersion: 1.0_full, 2.0_full
        'IMAGE URL or Base64', //Input Image
        'Description,Moderate,Faces', //or 'all'
        your_astica_CallBack, //Your Custom Callback function
    ); 
    
    //Set Your Custom Callback Function
    function your_astica_CallBack(data) {   
        if(typeof data.error != 'undefined') { alert(data.error); }         
        console.log(data); //view all data
    }	     
</script>

asticaVision Samples Click to enlarge



Describe Image
Detect Age and Gender
Object Detection

Detect People

Vision AI can be used to detect people in real-time or within static images. Each person that is detected using computer vision can be analyzed to determine a number of factors about the person. The accuracy and information available will depend on the angle and resolution of your input. Computer Vision does not require a high quality image or video to accurately detect faces. Experiment with lower quality images to see for yourself.



Identify Celebrities

Vision AI will identify and list each celebrity that is found in your input file using facial recognition. Machine vision can be used to accuratly determine whether an image or video contains a celebrity.



Verify Identies

Compare user submitted images against verification documents to detect similarities and allow users to automatically verify their identify using Vision AI. Improve your KYC and reduce overhead requirements using computer vision. Learn more about Reading Documents.



Accurate Face API

The Face API available using computer vision from astica can be used to determine facial features and other properties about the person, including age and gender. Using facial recognition offers additional details such as whether a mask is being worn, or



Integrate
Facial Recognition API

Machine vision enables you to integrate facial recognition into your application. The javascript example generates face data of the provided image.

<script src="https://astica.ai/javascript-sdk/2023-07-09/astica.api.js"></script>
<script>
    asticaAPI_start('API KEY HERE'); //run at least once    
   
    //Example 1:   
    asticaVision('Image URL', 'Objects'); //simple computer vision  
    
    
    //Example 2:   
    asticaVision('Image URL', 'Description,Faces,Objects'); //with options:
  
  
    //Example 3:   
    asticaVision('https://astica.ai/example/asticaVision_sample.jpg'); //advanced, simple
    
    
    //Example 4:      
    //advanced with parameters:
    asticaVision(
        '1.0_full', //modelVersion: 1.0_full, 2.0_full
        'IMAGE URL or Base64', //Input Image
        'Description,Moderate,Faces', //or 'all'
        your_astica_CallBack, //Your Custom Callback function
    ); 
    
    //Set Your Custom Callback Function 
	function your_astica_CallBack(data) {   
        if(typeof data.error != 'undefined') { alert(data.error); }         
        console.log(data); //view all data
    }	     
</script>