51 lines
1,010 B
Java
51 lines
1,010 B
Java
package it.acxent.face.api;
|
|
|
|
public class TrainingImage {
|
|
private String imageFileName;
|
|
|
|
private long label;
|
|
|
|
private String md5;
|
|
|
|
public TrainingImage(String imageFileName, long label) {
|
|
this.imageFileName = imageFileName;
|
|
this.label = label;
|
|
}
|
|
|
|
public TrainingImage(String imageFileName, long label, String md5) {
|
|
this.imageFileName = imageFileName;
|
|
this.label = label;
|
|
this.md5 = md5;
|
|
}
|
|
|
|
public TrainingImage(String imageFileName, String md5) {
|
|
this.imageFileName = imageFileName;
|
|
this.md5 = md5;
|
|
}
|
|
|
|
public TrainingImage() {}
|
|
|
|
public String getImageFileName() {
|
|
return this.imageFileName;
|
|
}
|
|
|
|
public void setImageFileName(String imageFileName) {
|
|
this.imageFileName = imageFileName;
|
|
}
|
|
|
|
public long getLabel() {
|
|
return this.label;
|
|
}
|
|
|
|
public void setLabel(long label) {
|
|
this.label = label;
|
|
}
|
|
|
|
public String getMd5() {
|
|
return this.md5;
|
|
}
|
|
|
|
public void setMd5(String md5) {
|
|
this.md5 = md5;
|
|
}
|
|
}
|