潘志宝
2024-12-12 b095cfc785d4a280ffaae086503a6a0e4f1fa4c1
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.iailab.netsdk.lib.enumeration;
 
/**
 * @author 47081
 * @version 1.0
 * @description 热度图类型
 * @date 2020/9/21
 */
public enum EM_HEATMAP_TYPE {
    /**
     * 未知
     */
    EM_HEATMAP_UNKNOWN(0,"未知"),
    /**
     * 平均滞留时间热度图
     */
    EM_HEATMAP_AVERAGESTAYTIME(1,"平均滞留时间热度图"),
    /**
     * 人数统计热度图
     */
    EM_HEATMAP_HUMANSTATISTICS(2,"人数统计热度图"),
    /**
     * 行人轨迹图
     */
    EM_HEATMAP_HUMANTRACK(3,"行人轨迹图");
    /**
     * 类型
     */
    private int type;
    /**
     * 解释
     */
    private String desc;
    private EM_HEATMAP_TYPE(int type,String desc){
        this.type=type;
        this.desc=desc;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public static EM_HEATMAP_TYPE getEmHeatMap(int type) {
        for (EM_HEATMAP_TYPE heatmap : EM_HEATMAP_TYPE.values()) {
            if (heatmap.getType() == type) {
                return heatmap;
            }
        }
        return null;
    }
}