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;
|
}
|
|
|
}
|