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

com.luna.baidu.dto.face.FaceMatchResultDTO Maven / Gradle / Ivy

The newest version!
package com.luna.baidu.dto.face;

import com.luna.baidu.dto.word.FaceDTO;

import java.util.List;

/**
 * @Package: com.luna.baidu.dto.face
 * @ClassName: FaceMatchResultDTO
 * @Author: luna
 * @CreateTime: 2020/8/14 11:08
 * @Description:
 */
public class FaceMatchResultDTO {

    /**
     * 匹配分数
     */
    private Double        score;

    /**
     * faceToken
     */
    private List faceList;

    public Double getScore() {
        return score;
    }

    public void setScore(Double score) {
        this.score = score;
    }

    public List getFaceList() {
        return faceList;
    }

    public void setFaceList(List faceList) {
        this.faceList = faceList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy