www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

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