111
k94314517
2025-02-28 04dba6a17f836b5fbdf0eedff8a129c6785fd8a2
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package org.yzh.protocol.commons.transform.parameter;
 
import io.github.yezhihao.protostar.annotation.Field;
 
/**
 * 图像分析报警参数设置
 * @author yezhihao
 * https://gitee.com/yezhihao/jt808-server
 */
public class ParamImageIdentifyAlarm {
 
    public static final Integer key = 0x007B;
 
    @Field(length = 1, desc = "车辆核载人数,客运车辆核定载客人数,视频分析结果超过时产生报警")
    private byte overloadThreshold;
    @Field(length = 1, desc = "疲劳程度阈值,视频分析疲劳驾驶报警阈值,超过时产生报警")
    private byte fatigueThreshold;
 
    public ParamImageIdentifyAlarm() {
    }
 
    public byte getOverloadThreshold() {
        return overloadThreshold;
    }
 
    public void setOverloadThreshold(byte overloadThreshold) {
        this.overloadThreshold = overloadThreshold;
    }
 
    public byte getFatigueThreshold() {
        return fatigueThreshold;
    }
 
    public void setFatigueThreshold(byte fatigueThreshold) {
        this.fatigueThreshold = fatigueThreshold;
    }
 
    @Override
    public String toString() {
        return "ParamImageIdentifyAlarm{" +
                "overloadThreshold=" + overloadThreshold +
                ", fatigueThreshold=" + fatigueThreshold +
                '}';
    }
}