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

com.aiwiown.face.domain.detect.Mouthstatus Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.domain.detect;

import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;

import java.math.BigDecimal;

public class Mouthstatus extends ApiObject {

    private static final long serialVersionUID = -235623125788729397L;
    /**
     * 嘴部被医用口罩或呼吸面罩遮挡的置信度
     */
    @ApiField("surgical_mask_or_respirator")
    private BigDecimal surgicalMaskOrRespirator;
    /**
     * 嘴部被其他物体遮挡的置信度
     */
    @ApiField("other_occlusion")
    private BigDecimal otherOcclusion;
    /**
     * 嘴部没有遮挡且闭上的置信度
     */
    @ApiField("close")
    private BigDecimal close;
    /**
     * 嘴部没有遮挡且张开的置信度
     */
    @ApiField("open")
    private BigDecimal open;

    public BigDecimal getOtherOcclusion() {
        return otherOcclusion;
    }

    public void setOtherOcclusion(BigDecimal otherOcclusion) {
        this.otherOcclusion = otherOcclusion;
    }

    public BigDecimal getClose() {
        return close;
    }

    public void setClose(BigDecimal close) {
        this.close = close;
    }

    public BigDecimal getOpen() {
        return open;
    }

    public void setOpen(BigDecimal open) {
        this.open = open;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy