www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,51 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue