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

com.microsoft.azure.cognitiveservices.vision.faceapi.models.Hair 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 java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Properties describing hair attributes.
 */
public class Hair {
    /**
     * A number describing confidence level of whether the person is bald.
     */
    @JsonProperty(value = "bald")
    private double bald;

    /**
     * A boolean value describing whether the hair is visible in the image.
     */
    @JsonProperty(value = "invisible")
    private boolean invisible;

    /**
     * An array of candidate colors and confidence level in the presence of
     * each.
     */
    @JsonProperty(value = "hairColor")
    private List hairColor;

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

    /**
     * Set the bald value.
     *
     * @param bald the bald value to set
     * @return the Hair object itself.
     */
    public Hair withBald(double bald) {
        this.bald = bald;
        return this;
    }

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

    /**
     * Set the invisible value.
     *
     * @param invisible the invisible value to set
     * @return the Hair object itself.
     */
    public Hair withInvisible(boolean invisible) {
        this.invisible = invisible;
        return this;
    }

    /**
     * Get the hairColor value.
     *
     * @return the hairColor value
     */
    public List hairColor() {
        return this.hairColor;
    }

    /**
     * Set the hairColor value.
     *
     * @param hairColor the hairColor value to set
     * @return the Hair object itself.
     */
    public Hair withHairColor(List hairColor) {
        this.hairColor = hairColor;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy