Vision Image Analysis is one of the prebuilt features offered by Azure AI Vision. It is a cloud-based API service that applies machine-learning intelligence to analyze and extract relevant information from a variety of images. This includes medical imaging, photographs, and other visual data, making it a powerful tool for interpreting visual content and providing insights across various applications.
We do not store your images for security and privacy reasons. Please provide us with URLs from online images to test our API. If you do not have any, you can use the following samples:
- https://github.com/MicrosoftLearning/mslearn-ai-vision/blob/main/Labfiles/01-analyze-images/Python/image-analysis/images/street.jpg?raw=true
- https://github.com/MicrosoftLearning/mslearn-ai-vision/blob/main/Labfiles/01-analyze-images/Python/image-analysis/images/person.jpg?raw=true
Sign up now! Fill out our quick registration form here!
Loading…
Call API with curl:
curl --location 'http://your-api-endpoint/imageAnalysis' \ --header 'Content-Type: application/json' \ --data '{ "apiKey": "YOUR_API_KEY", "documents": [ { "id": "doc1", "url": "https://example.com/image1.jpg" }, { "id": "doc2", "url": "https://example.com/image2.jpg" } ] }'