EndEngine

Definition

Usage

Compare whether the feature templates for two pieces of fingerprints are matched or not. Here,

regTemplateStr(BASE64 formatted string) represents fingerprint registration feature templates,

verTemplateStr(BASE64 formatted string) expresses fingerprint verification feature templates which

are collected on the spot, AdoLearning denotes whether to carry out fingerprint feature template

learning updating or not, and AregFeatureChanged shows whether the registration template regTemplate

has been changed or not. True will be returned when the two pieces of fingerprints are matched, and

False will be returned when not matched.

 

Ejemplo

C#

    /// <summary>
    /// Release the fingerprint device initialized by method InitEngine, and method InitEngine 
    /// can be utilized to re-initialize fingerprint device. 
    /// </summary>
    private void EndEngine()
        {
            axZKFPEngX1.EndEngine();
        }

VB

Private Sub btnEndEngine_Click(sender As Object, e As EventArgs) Handles btnEndEngine.Click
        axZKFPEngX1.EndEngine()
End Sub