Examples of DPFPFeatureSet


Examples of com.digitalpersona.onetouch.DPFPFeatureSet

    }

    @Override
    protected void process(DPFPSample sample) {
        super.process(sample);
        DPFPFeatureSet features = extractFeatures(sample, DPFPDataPurpose.DATA_PURPOSE_ENROLLMENT);

        try {
            if ( features != null ){
                enroller.addFeatures(features);           
            }
View Full Code Here

Examples of com.digitalpersona.onetouch.DPFPFeatureSet

    @Override
    protected void process(DPFPSample sample) {
        super.process(sample);

        System.out.println("[" + Shared.now() + "] " + this.getClass().getName() + " " + Shared.lineNumber() " Comparando huella");
        DPFPFeatureSet features = extractFeatures(sample, DPFPDataPurpose.DATA_PURPOSE_VERIFICATION);

        if (features != null) {
            // Compare the feature set with our template

            boolean isOk = false;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.