Package de.offis.faint.gui.tools

Examples of de.offis.faint.gui.tools.InfoDialog


      }
     
      mainFrame.setEnabled(true);
      }
      else {
        new InfoDialog(mainFrame," Image "+image.getFile().getPath()+" not available!");       
      }
    }
   
    // Delete Person
    else if (incomingEvent instanceof EventDeletePerson){
View Full Code Here


   
    // Prepare first set of Eigenfaces (in same thread)
    if (averageFace == null || eigenFaces == null){
      eigenfaceBuilder.updateEigenfaces();
      if (averageFace == null){
        new InfoDialog(null, "<html>Not enough training images availble for EigenfaceRecognition.<br>Please classify the first faces manually!</html>");
        return new HashMap<String, Integer>();
      }
    }
   
    FaceDatabase db = MainController.getInstance().getFaceDB();
View Full Code Here

TOP

Related Classes of de.offis.faint.gui.tools.InfoDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.