All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.cognitiveservices.vision.computervision.models.ImageCaption Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 */

package com.microsoft.azure.cognitiveservices.vision.computervision.models;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * An image caption, i.e. a brief description of what the image depicts.
 */
public class ImageCaption {
    /**
     * The text of the caption.
     */
    @JsonProperty(value = "text")
    private String text;

    /**
     * The level of confidence the service has in the caption.
     */
    @JsonProperty(value = "confidence")
    private double confidence;

    /**
     * Get the text value.
     *
     * @return the text value
     */
    public String text() {
        return this.text;
    }

    /**
     * Set the text value.
     *
     * @param text the text value to set
     * @return the ImageCaption object itself.
     */
    public ImageCaption withText(String text) {
        this.text = text;
        return this;
    }

    /**
     * Get the confidence value.
     *
     * @return the confidence value
     */
    public double confidence() {
        return this.confidence;
    }

    /**
     * Set the confidence value.
     *
     * @param confidence the confidence value to set
     * @return the ImageCaption object itself.
     */
    public ImageCaption withConfidence(double confidence) {
        this.confidence = confidence;
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy