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  lris操作能力集 
9 * @origin autoTool
10 * @date 2023/02/10 14:34:21
11 */
12 public class NET_ACCESS_IRIS_CAPS extends NetSDKLib.SdkStructure {
13 /** 
14 每次最大插入量
15 */
16 public            int                    nMaxInsertRate;
17 /** 
18 眼睛信息图片最小尺寸,单位KB
19 */
20 public            int                    nMinIrisPhotoSize;
21 /** 
22 眼睛信息图片最大尺寸,单位KB
23 */
24 public            int                    nMaxIrisPhotoSize;
25 /** 
26 每个用户最多支持多少组
27 */
28 public            int                    nMaxIrisGroup;
29 /** 
30 眼睛识别算法提供标识,0未知,1DH
31 */
32 public            int                    nRecognitionAlgorithmVender;
33 /** 
34 算法(模型)版本号,如果版本号有多位,按Major/Minor从高到低每8bit表示一个版本 如1.5.2表示成0x00010502
35 */
36 public            int                    nRecognitionVersion;
37 /** 
38 眼睛信息存储上限
39 */
40 public            int                    nMaxIrisesCount;
41 /** 
42 保留字节
43 */
44 public            byte[]                    byReserved=new byte[500];
45
46 public            NET_ACCESS_IRIS_CAPS(){
47 }
48 }