Update arborescence 2

This commit is contained in:
Louis Calas
2019-10-10 18:01:08 +02:00
parent 29dba04efb
commit a0b8e315db
167 changed files with 3 additions and 5 deletions

22
src/ocr/Copie.java Normal file
View File

@@ -0,0 +1,22 @@
package ocr;
import java.awt.image.BufferedImage;
public class Copie {
ImagesCopie base;
public Copie(BufferedImage img) {
this.base = new ImagesCopie(img);
}
public ImagesCopie getBase() {
return base;
}
public void setBase(ImagesCopie base) {
this.base = base;
}
}