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
43
44
45
46
47
48
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/** 
* @author 291189
* @description  lris操作能力集 
* @origin autoTool
* @date 2023/02/10 14:34:21
*/
public class NET_ACCESS_IRIS_CAPS extends NetSDKLib.SdkStructure {
/** 
每次最大插入量
*/
public            int                    nMaxInsertRate;
/** 
眼睛信息图片最小尺寸,单位KB
*/
public            int                    nMinIrisPhotoSize;
/** 
眼睛信息图片最大尺寸,单位KB
*/
public            int                    nMaxIrisPhotoSize;
/** 
每个用户最多支持多少组
*/
public            int                    nMaxIrisGroup;
/** 
眼睛识别算法提供标识,0未知,1DH
*/
public            int                    nRecognitionAlgorithmVender;
/** 
算法(模型)版本号,如果版本号有多位,按Major/Minor从高到低每8bit表示一个版本 如1.5.2表示成0x00010502
*/
public            int                    nRecognitionVersion;
/** 
眼睛信息存储上限
*/
public            int                    nMaxIrisesCount;
/** 
保留字节
*/
public            byte[]                    byReserved=new byte[500];
 
public            NET_ACCESS_IRIS_CAPS(){
}
}