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

com.microsoft.azure.cognitiveservices.vision.faceapi.models.VerifyResult Maven / Gradle / Ivy

There is a newer version: 1.0.1-beta
Show 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.faceapi.models;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Result of the verify operation.
 */
public class VerifyResult {
    /**
     * True if the two faces belong to the same person or the face belongs to
     * the person, otherwise false.
     */
    @JsonProperty(value = "isIdentical", required = true)
    private boolean isIdentical;

    /**
     * A number indicates the similarity confidence of whether two faces belong
     * to the same person, or whether the face belongs to the person. By
     * default, isIdentical is set to True if similarity confidence is greater
     * than or equal to 0.5. This is useful for advanced users to override
     * "isIdentical" and fine-tune the result on their own data.
     */
    @JsonProperty(value = "confidence", required = true)
    private double confidence;

    /**
     * Get the isIdentical value.
     *
     * @return the isIdentical value
     */
    public boolean isIdentical() {
        return this.isIdentical;
    }

    /**
     * Set the isIdentical value.
     *
     * @param isIdentical the isIdentical value to set
     * @return the VerifyResult object itself.
     */
    public VerifyResult withIsIdentical(boolean isIdentical) {
        this.isIdentical = isIdentical;
        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 VerifyResult object itself.
     */
    public VerifyResult withConfidence(double confidence) {
        this.confidence = confidence;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy