Package com.griaule.grfingerjava

Examples of com.griaule.grfingerjava.MatchingContext


     * prepared FingerprintMatch object.
     */
    public void prepare() {
        if (useFingerprintSdk) {
            try {
                grMatchingContext = new MatchingContext();
            } catch (GrFingerJavaException ex) {
                Logger.getLogger(FingerprintMatch.class.getName()).log(Level.SEVERE, null, ex);
            }
            try {
                grMatchingContext.prepareForIdentification(grTemplate);
View Full Code Here


        this.fingerprintingComponent = fingerprintingComponent;
    }

    private void initialize() throws MissingFingerprintManagerImpException {
        try {
            matchingContext = new MatchingContext();
            //GrFingerJava.installLicense("ZMFAG-PKWUK-CABDA-KSDJF");
            //TODO: Investigate why this line sometimes hangs
            GrFingerJava.initializeCapture(this);
            showMessage("Waiting for device.");
        } catch (GrFingerJavaException ex) {
View Full Code Here

TOP

Related Classes of com.griaule.grfingerjava.MatchingContext

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.