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
28
29
30
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 人体测温的可见光的能力
 * @date 2021/01/11
 */
public class CFG_ANATOMYTEMP_VISUAL_CAPS extends NetSDKLib.SdkStructure{
    /**
     * 是否支持人脸左右角度过滤
     */
    public int bSupportFaceRight;
 
    /**
     * 是否支持人脸上下角度过滤
     */
    public int bSupportFaceUp;
    
    /**
     * 是否支持人脸左右歪头角度过滤
     */
    public int bSupportFaceRoll;
    
    /**
     * 预留
     */
    public byte[] byReserved = new byte[64];
}