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  视频算法类型检测 
9 * @date 2022/08/03 14:43:06
10 */
11 public class NET_VIDEO_ALGORITHMTYPE_DETECTIONRESULT extends NetSDKLib.SdkStructure {
12 /** 
13 结构体大小
14 */
15 public            int                    dwSize;
16 /** 
17 是否满足人脸算法条件
18 */
19 public            int                    bFaceAlgorithm;
20 /** 
21 人脸算法分值
22 */
23 public            int                    nFaceAlgorithmValue;
24 /** 
25 是否满足人体算法条件
26 */
27 public            int                    bHumanBodyAlgorithm;
28 /** 
29 人体算法分值
30 */
31 public            int                    nHumanBodyAlgorithmValue;
32 /** 
33 是否满足车辆算法条件
34 */
35 public            int                    bVehicleAlgorithm;
36 /** 
37 车辆算法分值
38 */
39 public            int                    nVehicleAlgorithmValue;
40 /** 
41 是否满足车牌算法条件
42 */
43 public            int                    bPlateNumAlgorithm;
44 /** 
45 车牌算法分值
46 */
47 public            int                    nPlateNumAlgorithmValue;
48
49 public NET_VIDEO_ALGORITHMTYPE_DETECTIONRESULT(){
50         this.dwSize=this.size();
51 }
52 }