--- id: azure-ai-vision-imageanalysis version: "1.0.0" license: MIT License license_treatment: permissive maintenance: active --- # azure-ai-vision-imageanalysis — Microsoft Azure Ai Vision Imageanalysis Client Library for Python License: permissive · Maintenance: active · Downloads: 403.5K/mo ## What it is and what it does This is the official Azure SDK client for Computer Vision's Image Analysis service. It wraps Azure's REST API to let you send images (by file or URL) and request one or more visual features—captions, OCR text extraction, object detection, and others—in a single call. The library handles authentication (API key or Entra ID), request construction, and response parsing, so you don't have to build HTTP calls manually. The package supports both synchronous and asynchronous workflows. It depends on azure-core for credential handling and HTTP transport, isodate for date parsing, and typing-extensions for type hints. You'll need an active Azure subscription and a Computer Vision resource deployed in a supported region; the library reads your endpoint and credentials from code (not environment variables automatically), so you manage secrets yourself. Use it for: - Extract text from images (OCR) for document digitization or sign recognition workflows. - Generate human-readable captions for image galleries or accessibility features. - Detect and classify objects in images for inventory, security, or content moderation tasks. - Build a multi-feature analysis pipeline that combines caption, text, and object detection in one call. - Integrate image understanding into a larger Azure-based application using managed identity authentication. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Calls Azure's Computer Vision service to analyze images and extract visual features like captions, text (OCR), and object detection in a single API call. Yes, if you are already committed to Azure and need to call Computer Vision's Image Analysis service from Python. The SDK is actively maintained, has no known vulnerabilities, and low install friction. No, if you are evaluating vision libraries—you'll need an Azure account and resource first, and the service is not free-tier beyond a limited quota. ## Install pip install azure-ai-vision-imageanalysis uv add azure-ai-vision-imageanalysis poetry add azure-ai-vision-imageanalysis ## Installing azure-ai-vision-imageanalysis Before you install: Low install friction with three lightweight runtime dependencies. The package is actively maintained with recent commits, though it entered beta status relatively recently. License in practice: MIT License permits commercial and private use with minimal restrictions, making it suitable for most projects. Quickstart: pip install azure-ai-vision-imageanalysis from azure.ai.vision.imageanalysis import ImageAnalysisClient from azure.core.credentials import AzureKeyCredential client = ImageAnalysisClient( endpoint="https://your-resource.cognitiveservices.azure.com", credential=AzureKeyCredential("your-key") ) Requires an Azure subscription and a deployed Computer Vision resource with endpoint URL and API key or Entra ID credentials. Verify before relying: - Whether GPU-supported region requirement for Caption/Dense Captions features affects typical use cases. - Performance characteristics and latency for different image sizes and visual feature combinations. - Cost implications of API calls relative to alternative vision services. ## Package facts - License: MIT License (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 403.5K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags azure image analysis, computer vision ocr, image captioning api, object detection azure, visual feature extraction, azure vision client, image text recognition, azure-sdk, computer-vision, image-analysis [View on SkillFed](https://skillfed.io/packages/azure-ai-vision-imageanalysis) · [View on PyPI](https://pypi.org/project/azure-ai-vision-imageanalysis/)