提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
/** |
|
3 |
* @author 47081 |
|
4 |
* @desc |
|
5 |
* @version 1.0.0 |
|
6 |
* @date 2021/4/9 |
|
7 |
*/ |
|
8 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author 47081 |
|
12 |
* @description CLIENT_GetDevCaps NET_VIDEOIN_BACKLIGHT_CAPS 命令出参 |
|
13 |
* @date 2021/4/9 |
|
14 |
* @version 1.0 |
|
15 |
*/ |
|
16 |
public class NET_OUT_VIDEOIN_DAYNIGHT_CAPS extends NetSDKLib.SdkStructure { |
|
17 |
/** 用户使用时赋值为结构体大小 */ |
|
18 |
public int dwSize; |
|
19 |
/** 球机机芯日夜设置能力 */ |
|
20 |
public boolean bSupport; |
|
21 |
/** 实际支持的ICR切换类型个数 */ |
|
22 |
public int nICRType; |
|
23 |
/** ICR切换类型列表 */ |
|
24 |
public int[] emICRType = new int[8]; |
|
25 |
/** 实际支持的彩转黑模式个数 */ |
|
26 |
public int nColorBlackMode; |
|
27 |
/** 支持的彩转黑模式列表 */ |
|
28 |
public int[] emColorBlackMode = new int[8]; |
|
29 |
/** 彩转黑灵敏度最小值 */ |
|
30 |
public int nSensitivityRangeMin; |
|
31 |
/** 彩转黑灵敏度最大值 */ |
|
32 |
public int nSensitivityRangeMax; |
|
33 |
/** 日夜模式切换延时最小值 */ |
|
34 |
public int nDelayRangeMin; |
|
35 |
/** 日夜模式切换延时最大值 */ |
|
36 |
public int nDelayRangeMax; |
|
37 |
|
|
38 |
public NET_OUT_VIDEOIN_DAYNIGHT_CAPS() { |
|
39 |
this.dwSize = size(); |
|
40 |
} |
|
41 |
} |