提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 251823 |
|
7 |
* @description 精准客流能力,客流ReID, 人脸去重,客流聚档的对外能力 |
|
8 |
* @origin autoTool |
|
9 |
* @date 2023/09/22 13:39:22 |
|
10 |
*/ |
|
11 |
public class CFG_ACCURATE_NUMBER_STAT extends NetSDKLib.SdkStructure { |
|
12 |
/** |
|
13 |
* 是否支持精准客流 |
|
14 |
*/ |
|
15 |
public int bSupport; |
|
16 |
/** |
|
17 |
* 是否支持本地报表查询 |
|
18 |
*/ |
|
19 |
public int bSupportLocalDataStore; |
|
20 |
/** |
7412dd
|
21 |
* 精准人数统计类型 {@link com.iailab.netsdk.lib.enumeration.EM_RULE_TYPE_ACCURATE} |
149dd0
|
22 |
*/ |
H |
23 |
public int emRuleType; |
|
24 |
/** |
|
25 |
* 支持客流融合的通道号个数 |
|
26 |
*/ |
|
27 |
public int nChannelsNum; |
|
28 |
/** |
|
29 |
* 支持客流融合的通道号,在RuleType为NumberStatCluster时有效 |
|
30 |
*/ |
|
31 |
public int[] nChannels = new int[1024]; |
|
32 |
/** |
|
33 |
* 单个通道支持的区域个数,NVR填写1,IPC根据支持的区域数填写 |
|
34 |
*/ |
|
35 |
public int nAreaNum; |
|
36 |
/** |
|
37 |
* 是否支持营业时间设置,FaceRecognition存在支持和不支持营业时间设置两种形态 |
|
38 |
*/ |
|
39 |
public int bSupportTimeCfg; |
|
40 |
/** |
|
41 |
* 支持的去重方向个数 |
|
42 |
*/ |
|
43 |
public int nDirectionNum; |
|
44 |
/** |
|
45 |
* 支持的去重方向 |
|
46 |
*/ |
|
47 |
public int[] emDirection = new int[32]; |
|
48 |
/** |
|
49 |
* 支持查询粒度个数 |
|
50 |
*/ |
|
51 |
public int nGranularityNum; |
|
52 |
/** |
|
53 |
* 支持查询粒度 |
|
54 |
*/ |
|
55 |
public byte[] szGranularity = new byte[8 * 8]; |
|
56 |
|
|
57 |
public CFG_ACCURATE_NUMBER_STAT() { |
|
58 |
} |
|
59 |
} |