提交 | 用户 | 时间
|
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 |
* @origin autoTool |
|
10 |
* @date 2023/11/30 16:17:33 |
|
11 |
*/ |
|
12 |
public class CFG_VIDEOIN_BACKLIGHT_BASE extends NetSDKLib.SdkStructure { |
|
13 |
/** |
7412dd
|
14 |
背光模式 {@link com.iailab.netsdk.lib.enumeration.EM_VIDEOIN_BACKLIGHT_MODE} |
149dd0
|
15 |
*/ |
H |
16 |
public int emMode; |
|
17 |
/** |
7412dd
|
18 |
背光补偿模式,当emMode == EM_BACKLIGHT_BACKLIGHT时有效 {@link com.iailab.netsdk.lib.enumeration.EM_BACKLIGHT_MODE} |
149dd0
|
19 |
*/ |
H |
20 |
public int emBacklightMode; |
|
21 |
/** |
|
22 |
背光补偿区域,当emBacklightMode == EM_BACKLIGHT_REGION时有效 |
|
23 |
*/ |
|
24 |
public NetSDKLib.CFG_RECT stuBacklightRegion=new NetSDKLib.CFG_RECT(); |
|
25 |
/** |
|
26 |
宽动态值,emMode == EM_BACKLIGHT_WIDEDYNAMIC时有效 |
|
27 |
*/ |
|
28 |
public int nWideDynamicRange; |
|
29 |
/** |
|
30 |
强光抑制,emMode == EM_BACKLIGHT_GLAREINHIBITION时有效 |
|
31 |
*/ |
|
32 |
public int nGlareInhibition; |
|
33 |
/** |
7412dd
|
34 |
SSA对比度调节模式,emMode==EM_BACKLIGHT_SSA时有效 {@link com.iailab.netsdk.lib.enumeration.EM_INTENSITY_MODE} |
149dd0
|
35 |
*/ |
H |
36 |
public int emInitensityMode; |
|
37 |
/** |
|
38 |
SSA手动调整强度值,emInitensityMode==EM_INTENSITY_MANUAL时有效 |
|
39 |
*/ |
|
40 |
public int nIntensity; |
|
41 |
|
|
42 |
public CFG_VIDEOIN_BACKLIGHT_BASE(){ |
|
43 |
} |
|
44 |
|
|
45 |
@Override |
|
46 |
public String toString() { |
|
47 |
return "CFG_VIDEOIN_BACKLIGHT_BASE{" + |
|
48 |
"emMode=" + emMode + |
|
49 |
", emBacklightMode=" + emBacklightMode + |
|
50 |
", stuBacklightRegion=" + stuBacklightRegion + |
|
51 |
", nWideDynamicRange=" + nWideDynamicRange + |
|
52 |
", nGlareInhibition=" + nGlareInhibition + |
|
53 |
", emInitensityMode=" + emInitensityMode + |
|
54 |
", nIntensity=" + nIntensity + |
|
55 |
'}'; |
|
56 |
} |
|
57 |
} |