Azure AI Vision Image Analysis SDK for Python
Analisar Imagens com Azure AI Vision
Desenvolvedores precisam integrar capacidades de visão computacional em aplicações Python, mas lutam com a documentação complexa do Azure SDK. Esta skill fornece exemplos de código prontos para uso e melhores práticas para legendas de imagens, detecção de objetos, OCR e recorte inteligente com Azure AI Vision.
下载技能 ZIP
在 Claude 中上传
前往 设置 → 功能 → 技能 → 上传技能
开启并开始使用
测试它
正在使用“Azure AI Vision Image Analysis SDK for Python”。 Show me how to get a caption for an image using Azure AI Vision
预期结果:
- Use the CAPTION visual feature to get a human-readable description of the image
- The result includes both the caption text and a confidence score
- Enable gender_neutral_caption for inclusive descriptions
正在使用“Azure AI Vision Image Analysis SDK for Python”。 How do I extract text from scanned documents?
预期结果:
- Use the READ visual feature for OCR text extraction
- Results include word-level confidence scores
- Supports multiple languages through the language parameter
安全审计
安全This is a prompt-only documentation skill containing reference material for the Azure AI Vision Image Analysis SDK. No executable code was detected. The skill provides documentation on how to use Microsoft's Azure computer vision service for image analysis tasks including captioning, object detection, OCR, and smart cropping. No security concerns identified.
质量评分
你能构建什么
Automatizar Processamento de Documentos
Extrair texto de documentos e formulários digitalizados automaticamente usando capacidades de OCR
Construir Sistemas de Catalogação de Imagens
Gerar automaticamente legendas e tags para imagens carregadas em bibliotecas de mídia
Criar Miniaturas Inteligentes
Gerar recortes de imagens com reconhecimento de contexto para design web responsivo
试试这些提示
Show me how to get a caption for an image using Azure AI Vision ImageAnalysisClient in Python
Write Python code to extract all text from an image using the READ visual feature
How do I detect objects in an image and get their bounding box coordinates using Azure AI Vision?
Show me how to use the async client to analyze multiple images concurrently
最佳实践
- Solicite apenas os recursos visuais necessários para reduzir latência e custo
- Use clientes assíncronos para cenários de processamento em lote de alta vazão
- Sempre trate HttpResponseError para tratamento de erros robusto
避免
- Solicitar todos os recursos visuais de uma vez quando você precisa apenas de um
- Ignorar o tratamento de erros para falhas de rede ou imagens inválidas
- Usar chaves de API no código em vez de variáveis de ambiente