Descriptive Vision
Vision AI allows you to generate descriptive audio in real-time using astica API. Caption images, identify brands and celebrities, or provide automatic moderation using Vision API. With computer vision you can get detailed updates from live video feeds and simplifies the processing of bulk images.
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>
Analyze Images and Video Automatically
Use machine learning to quickly and accurately provide a text-based description that describes the selected image. Vision AI can also be used with static images and streaming video to provide alerts and other information in real-time.
Generate Quality Image Captions
Vision AI can be used to generate human readable captions from any image. Image captions clearly explain what is happening in the image, and identifies any objects or people. Generate high quality text that summarizes each image ‐ perfect for accessibility. High volume of images? Use the Descriptive Vision API to quickly process your entire library of images.
Real-time Video Supports
The Vision AI from asticaVision includes an API that allows you to process and analyze your video streams in real-time using machine learning such as object detection. Get reliable updates and alerts from new events captured by the camera, or receive detailed descriptions upon request.
Provide Instant Audio Descriptions
Combine Vision AI with the Voice Generation API from astica to enable natural sounding audio descriptions for image based content.
Integrate Computer Vision API
Generate detailed captions or quickly filter images based on subject and themes. Try the javascript computer vision API:
<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>