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
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/** 
* @author 291189
* @description  视频算法类型检测 
* @date 2022/08/03 14:43:06
*/
public class NET_VIDEO_ALGORITHMTYPE_DETECTIONRESULT extends NetSDKLib.SdkStructure {
/** 
结构体大小
*/
public            int                    dwSize;
/** 
是否满足人脸算法条件
*/
public            int                    bFaceAlgorithm;
/** 
人脸算法分值
*/
public            int                    nFaceAlgorithmValue;
/** 
是否满足人体算法条件
*/
public            int                    bHumanBodyAlgorithm;
/** 
人体算法分值
*/
public            int                    nHumanBodyAlgorithmValue;
/** 
是否满足车辆算法条件
*/
public            int                    bVehicleAlgorithm;
/** 
车辆算法分值
*/
public            int                    nVehicleAlgorithmValue;
/** 
是否满足车牌算法条件
*/
public            int                    bPlateNumAlgorithm;
/** 
车牌算法分值
*/
public            int                    nPlateNumAlgorithmValue;
 
public NET_VIDEO_ALGORITHMTYPE_DETECTIONRESULT(){
        this.dwSize=this.size();
}
}