Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/** 
* @author 291189
* @description  face操作能力集 
* @origin autoTool
* @date 2023/02/10 14:34:21
*/
public class NET_ACCESS_FACE_CAPS extends NetSDKLib.SdkStructure {
/** 
每次下发的最大数量
*/
public            int                    nMaxInsertRate;
/** 
目标存储上限
*/
public            int                    nMaxFace;
/** 
目标识别类型,0:白光 1:红外
*/
public            int                    nRecognitionType;
/** 
目标识别算法,0:未知1:华2:商3:依4:汉5:火
*/
public            int                    nRecognitionAlgorithm;
/** 
目标识别算法(模型)版本号,0x00010502 为1.5.2
*/
public            int                    dwRecognitionVersion;
/** 
白光目标照片的最小尺寸 ,单位 KB
*/
public            int                    nMinPhotoSize;
/** 
白光目标照片的最大尺寸 ,单位 KB
*/
public            int                    nMaxPhotoSize;
/** 
批量获取白光目标的最大数量
*/
public            int                    nMaxGetPhotoNumber;
/** 
是否支持获取白光照片
*/
public            int                    bIsSupportGetPhoto;
/** 
是否支持只下发目标特征值, 该字段已废弃
*/
public            int                    bIsSupportOnlyIssueFaceEigen;
/** 
是否支持只下发目标特征值
*/
public            int                    bIsSupportOnlyImportFaceEigen;
/** 
保留字节
*/
public            byte[]                    byReserved=new byte[496];
 
public            NET_ACCESS_FACE_CAPS(){
}
}