This commit is contained in:
GROSS Paul
2019-10-04 13:34:50 +02:00
parent 21a86f242e
commit 22c7aa27ec
118 changed files with 13142 additions and 63 deletions

View File

@@ -16,10 +16,12 @@ public class ImagesCopie {
public void applyOcrForEach() {
for(String s : hMapImgs.keySet())
{
hMapImgs.get(s).applyOcrImg();
for(Img s : hMapImgs.values())
{
s.applyOcrImg();
System.out.println("Desc : "+s.getDescription());
}
}
public Map<String, Img> gethMapImgs() {