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

com.aiwiown.face.domain.detect.Blur 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.ApiListField;

import java.util.List;

public class Blur extends ApiObject {

    private static final long serialVersionUID = 8766962507613988645L;
    /**
     * 人脸模糊分析结果
     */
    @ApiListField("blurness")
    private List blurness;

    public List getBlurness() {
        return blurness;
    }

    public void setBlurness(List blurness) {
        this.blurness = blurness;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy