houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4 import com.iailab.netsdk.lib.enumeration.NET_EM_CFG_OPERATE_TYPE;
5
6 /**
7  * 预置点信息叠加
8  * {@link NET_EM_CFG_OPERATE_TYPE#NET_EM_CFG_PTZ_PRESET}
9  *
10  * @author 47040
11  * @version 1.0.0
12  * @since Created in 2021/3/8 20:29
13  */
14 public class NET_OSD_CFG_PTZ_PRESET extends NetSDKLib.SdkStructure {
15     /**
16      * 结构体大小
17      */
18     public int dwSize;
19     /**
20      * 显示时间,单位为秒,0 表示一直显示,自定义范围:1-3600
21      */
22     public int nDisplayTime;
23     /**
24      * 叠加到主码流视频编码
25      */
26     public int bEncodeBlend;
27     /**
28      * 是否叠加到预览显示
29      */
30     public int bPreviewBlend;
31     /**
32      * 前景色
33      */
34     public NET_COLOR_RGBA stuFrontColor;
35     /**
36      * 背景色
37      */
38     public NET_COLOR_RGBA stuBackColor;
39     /**
40      * 区域
41      */
42     public NetSDKLib.NET_RECT stuRect;
43
44     public NET_OSD_CFG_PTZ_PRESET() {
45         dwSize = this.size();
46     }
47 }