houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 260611
7  * @description 目标检测框颜色
8  * @origin autoTool
9  * @date 2023/07/31 09:25:34
10  */
11 public class NET_FACEBOXCOLOR_CAPS extends NetSDKLib.SdkStructure {
12     /**
13      * 是否支持目标检测框颜色上报
14      */
15     public int bSupport;
16     /**
17      * 默认颜色
18      */
19     public NET_COLOR_RGBA stuDefaultColor = new NET_COLOR_RGBA();
20     /**
21      * 保留
22      */
23     public byte[] byReserved = new byte[1024];
24
25     public NET_FACEBOXCOLOR_CAPS() {
26     }
27 }