Exemplo n.º 1
0
 @Override
 public void waitforMetaData() throws InterruptedException {
   while (!ImageOperations.extractingMetadataIsFinished()) {
     Thread.sleep(500);
   }
   ImageOperations.resetMetadataFinished();
 }
Exemplo n.º 2
0
 @Override
 public void waitforOCR() throws InterruptedException {
   while (!ImageOperations.ocrIsFinished()) {
     Thread.sleep(500);
   }
   ImageOperations.resetOCRFinished();
 }
Exemplo n.º 3
0
 @Override
 public void waitforGeocode() throws InterruptedException {
   while (!ImageOperations.reverseGeocodeIsFinished()) {
     Thread.sleep(500);
   }
   ImageOperations.resetGeocodeFinished();
 }