skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

azure-ai-vision-imageanalysis-java

Image captioning, OCR, and object detection

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/microsoft/skills --skill azure-ai-vision-imageanalysis-java

Overview

What This Skill Does

Java SDK for Azure AI Vision Image Analysis. Supports captioning, OCR text extraction, object detection, people detection, content tagging, and smart cropping via a single API.

Application

When to use this Skill

Documentation

Show Skills.md file

Azure AI Vision Image Analysis SDK for Java

Build image analysis applications using the Azure AI Vision Image Analysis SDK for Java.

Installation

<dependency>
    <groupId>com.azure</groupId>
    <artifactId>azure-ai-vision-imageanalysis</artifactId>
    <version>1.1.0-beta.1</version>
</dependency>

Client Creation

With API Key

import com.azure.ai.vision.imageanalysis.ImageAnalysisClient;
import com.azure.ai.vision.imageanalysis.ImageAnalysisClientBuilder;
import com.azure.core.credential.KeyCredential;

String endpoint = System.getenv("VISION_ENDPOINT");
String key = System.getenv("VISION_KEY");

ImageAnalysisClient client = new ImageAnalysisClientBuilder()
    .endpoint(endpoint)
    .credential(new KeyCredential(key))
    .buildClient();
Lines 1 - 31 of 294

Recommendations

Explore other random skills

All skillsMy patterns