Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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.iailab.netsdk.lib.structure;
 
import com.iailab.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() {
    }
}