azure-ai-vision-imageanalysis-java Skill
Build image analysis applications with Azure AI Vision SDK for Java. Use when implementing image captioning, OCR text extraction, object detection, tagging, or smart cropping. Published by microsoft in skills.
What is azure-ai-vision-imageanalysis-java Skill?
Build image analysis applications with Azure AI Vision SDK for Java. Use when implementing image captioning, OCR text extraction, object detection, tagging, or smart cropping. Published by microsoft in skills. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Design and media
- Data analysis use cases
- Design and media use cases
Technical details
- Install or run with Copy skill directory
When to use azure-ai-vision-imageanalysis-java Skill
- Use it for data analysis.
- Use it for design and media.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/skills
- Skill file: .github/plugins/azure-sdk-java/skills/azure-ai-vision-imageanalysis-java/SKILL.md
What it does
Build image analysis applications with Azure AI Vision SDK for Java. Use when implementing image captioning, OCR text extraction, object detection, tagging, or smart cropping.
Skill instructions
Azure AI Vision Image Analysis SDK for Java Build image analysis applications using the Azure AI Vision Image Analysis SDK for Java. Installation xml <dependency <groupIdcom.azure</groupId <artifactIdazure-ai-vision-imageanalysis</artifactId <version1.1.0-beta.1</version </dependency Client Creation With API Key java import com.azure.ai.vision.imageanalysis.ImageAnalysisClient; import com.azure.ai.vision.imageanalysis.ImageAnalysisClientBuilder; import com.azure.core.credential.KeyCredential; String endpoint = System.getenv("VISIONENDPOINT"); String key = System.getenv("VISIONKEY"); ImageAnalysisClient client = new ImageAnalysisClientBuilder() .endpoint(endpoint) .credential(new KeyCredential(key)) .buildClient(); Async Client java import com.azure.ai.vision.imageanalysis.ImageAnalysisAsyncClient; ImageAnalysisAsyncClient asyncClient = new ImageAnalysisClientBuilder() .endpoint(endpoint) .credential(new KeyCredential(key)) .buildAsyncClient(); With DefaultAzureCredential java import co
Explore related resources
Frequently asked questions
What is azure-ai-vision-imageanalysis-java?
azure-ai-vision-imageanalysis-java is a open-source AI agent skill with Copy skill directory. Build image analysis applications with Azure AI Vision SDK for Java. Use when implementing image captioning, OCR text extraction, object detection, tagging, or smart cropping.
Who is azure-ai-vision-imageanalysis-java best for?
azure-ai-vision-imageanalysis-java is best for reusing agent instructions, scripts, and references, data analysis workflows, design and media workflows.
How do I install azure-ai-vision-imageanalysis-java?
Install or run azure-ai-vision-imageanalysis-java using Copy skill directory. Check azure-ai-vision-imageanalysis-java for the latest setup command.
Is azure-ai-vision-imageanalysis-java actively maintained?
azure-ai-vision-imageanalysis-java may need a closer maintenance check before production use.
Auto-fetched from GitHub.