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
package com.netsdk.lib.structure;
 
 
import com.netsdk.lib.NetSDKLib;
 
/** 
* @author 291189
* @description  算法百分占比,总100 
* @date 2022/09/15 15:38:18
*/
public class CFG_VIDEO_ALGORITHMTYPE_ALGORITHM extends NetSDKLib.SdkStructure {
/** 
检测百分比
*/
public            int                    nDetectionPercent;
/** 
识别百分比
*/
public            int                    nRecognitionPercent;
/** 
属性百分比
*/
public            int                    nAttributePercent;
 
public CFG_VIDEO_ALGORITHMTYPE_ALGORITHM(){
}
}