houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
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 260611
 * @description 目标检测框颜色
 * @origin autoTool
 * @date 2023/07/31 09:25:34
 */
public class NET_FACEBOXCOLOR_CAPS extends NetSDKLib.SdkStructure {
    /**
     * 是否支持目标检测框颜色上报
     */
    public int bSupport;
    /**
     * 默认颜色
     */
    public NET_COLOR_RGBA stuDefaultColor = new NET_COLOR_RGBA();
    /**
     * 保留
     */
    public byte[] byReserved = new byte[1024];
 
    public NET_FACEBOXCOLOR_CAPS() {
    }
}