houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  face操作能力集 
9 * @origin autoTool
10 * @date 2023/02/10 14:34:21
11 */
12 public class NET_ACCESS_FACE_CAPS extends NetSDKLib.SdkStructure {
13 /** 
14 每次下发的最大数量
15 */
16 public            int                    nMaxInsertRate;
17 /** 
18 目标存储上限
19 */
20 public            int                    nMaxFace;
21 /** 
22 目标识别类型,0:白光 1:红外
23 */
24 public            int                    nRecognitionType;
25 /** 
26 目标识别算法,0:未知1:华2:商3:依4:汉5:火
27 */
28 public            int                    nRecognitionAlgorithm;
29 /** 
30 目标识别算法(模型)版本号,0x00010502 为1.5.2
31 */
32 public            int                    dwRecognitionVersion;
33 /** 
34 白光目标照片的最小尺寸 ,单位 KB
35 */
36 public            int                    nMinPhotoSize;
37 /** 
38 白光目标照片的最大尺寸 ,单位 KB
39 */
40 public            int                    nMaxPhotoSize;
41 /** 
42 批量获取白光目标的最大数量
43 */
44 public            int                    nMaxGetPhotoNumber;
45 /** 
46 是否支持获取白光照片
47 */
48 public            int                    bIsSupportGetPhoto;
49 /** 
50 是否支持只下发目标特征值, 该字段已废弃
51 */
52 public            int                    bIsSupportOnlyIssueFaceEigen;
53 /** 
54 是否支持只下发目标特征值
55 */
56 public            int                    bIsSupportOnlyImportFaceEigen;
57 /** 
58 保留字节
59 */
60 public            byte[]                    byReserved=new byte[496];
61
62 public            NET_ACCESS_FACE_CAPS(){
63 }
64 }