zhanghua
2024-12-20 1f45c25ea725445d7e78e8d5da6e72150f35f2eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.dahua.netsdk.module.entity;
 
import com.dahua.netsdk.lib.NetSDKLib;
 
import java.io.Serializable;
 
/**
 * @author 47081
 * @version 1.0
 * @description 以图搜图候选人信息
 * @date 2021/4/1
 */
public class FaceRecognitionPersonInfo implements Serializable {
  /** 和查询图片的相似度,百分比表示,1~100 */
  public int bySimilarity;
  /** 人员所属数据库范围,详见EM_FACE_DB_TYPE */
  public int byRange;
  /** 当byRange为历史数据库时有效,表示查询人员出现的时间 */
  public NetSDKLib.NET_TIME stTime;
  /** 是否有识别结果,指这个检测出的人脸在库中有没有比对结果 */
  public boolean bIsHit;
  /** 通道号 */
  public int nChannelID;
  /** 文件路径 */
  public String szFilePathEx;
 
  public FaceRecognitionPersonInfo(
      int bySimilarity,
      int byRange,
      NetSDKLib.NET_TIME stTime,
      boolean bIsHit,
      int nChannelID,
      String szFilePathEx) {
    this.bySimilarity = bySimilarity;
    this.byRange = byRange;
    this.stTime = stTime;
    this.bIsHit = bIsHit;
    this.nChannelID = nChannelID;
    this.szFilePathEx = szFilePathEx;
  }
 
}