Read and Transcribe Files Automatically

Computer Vision

Accurately read text from documents automatically using computer vision. Machine reading can be used to verify submitted documents, transcribe invoices or labels. Use computer vision online or integrate with the astica Vision API to automate your operations.



Reading Documents with Computer Vision

Vision AI will read your documents and provide a high quality transcript using OCR and text detection.

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

Click to load Load Computer Vision Samples
Click to Load Computer Vision 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

Read Street Signs with Vision AI

Accurately detect and generate the text of street signs and store fronts using computer vision. Vision AI will provide accurate information for many kinds of street related texts, including text painted on asphalt. Signs and other text can also be read in real-time using Vision AI support for your camera or video stream.



Automatically Verify Identify Documents

Using the Vision API from astica, you can automatically process and verify details within documents and user submitted identification. Verify key details within documents such as date of birth, names, and addresses. Integrate into your platform or application to improve your KYC process and reduce overhead associated with verifying your customers.



Detect and Read Text-based Images

Vision AI can be used to automatically read documents and text within image. Machine vision will generate output that will be properly formatted, and will support advanced designs and document layouts. Quickly convert or transcribe documents in bulk using the API provided by asticaVision to quickly process thousands of documents.



Transcribe Word Documents and PDF Files

Automatically process each page of your documents to convert the contents back into text or for processing and keyword detection. The Vision AI from asticaVision will help you to automatically convert your PDF and documents into text. Machine vision supports PDF and many other popular document types. Vision AI can also be used to perform OCR and text detection on images, to transcribe image files.



Integrate
Machine Reading API

Process documents and generate accurate transcripts, or scan for other key details page by page.

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