liuxiaolong
2019-05-06 c15226e1b58f255dbebf1bdca8d4e53b9277249c
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
package com.basic.analy.entity;
 
import com.fasterxml.jackson.annotation.JsonInclude;
 
@JsonInclude(JsonInclude.Include.NON_NULL)
public class FaceResults {
    public int left;
    public int top;
    public int width;
    public int height;
 
    private  byte[] feature;
    private  float socre;
    public FaceResults(int left, int top, int width, int height, byte[] feature, float socre) {
        this.left = left;
        this.top = top;
        this.width = width;
        this.height = height;
        this.feature = feature;
        this.socre = socre;
    }
    public byte[] getFeature() {
        return feature;
    }
    public void setFeature(byte[] feature) {
        this.feature = feature;
    }
    public float getSocre() {
        return socre;
    }
    public void setSocre(float socre) {
        this.socre = socre;
    }
 
    
}