Griaule Biometrics

Home » Fingerprint SDK 2009 Developer's Manual » Programming Reference Guide » Fingerprint SDK ActiveX Reference Guide » Matching methods » GetVerifyParameters

GetVerifyParameters

Retrieves the verification parameters for the supplied context.

Prerequisites The Fingerprint SDK library must have been previously initialized.

Return On success, GR_OK is returned.
On failure, the appropriate error code is returned.

Parameters

[out] verifyThreshold

The current verification score threshold.

[out] verifyRotationTolerance

The current rotation tolerance for the verification process.

[in] context

Context from which the verification parameters will be retrieved.

See also

Declaration

C++ .NET

int GetVerifyParameters (int verifyThreshold, int verifyRotationTolerance, int context)

C#

int GetVerifyParameters (int verifyThreshold, int verifyRotationTolerance, int context)

VB6

Function GetVerifyParameters (ByRef verifyThreshold As Long, ByRef verifyRotationTolerance As Long, ByVal context As Long) As Long

VB .NET

Function GetVerifyParameters (ByRef verifyThreshold As Integer, ByRef verifyRotationTolerance As Integer, ByVal context As Integer) As Integer

Delphi

function GetVerifyParameters(var verifyThreshold: integer; var verifyRotationTolerance: integer; context: integer): integer;

Sample Code

C++ .NET

int thresholdVr, rotationMaxVr;
axGrFingerXCtrl2->GetVerifyParameters(&thresholdVr, &rotationMaxVr, GR_DEFAULT_CONTEXT);

C#

int thresholdVr = 0, rotationMaxVr = 0;
axGrFingerXCtrl1.GetVerifyParameters(ref thresholdVr, ref rotationMaxVr, (int)GRConstants.GR_DEFAULT_CONTEXT);

VB6

Dim thresholdVr As Long
Dim rotationMaxVr As Long
GrFingerXCtrl1.GetVerifyParameters thresholdVr, rotationMaxVr, GR_DEFAULT_CONTEXT

VB .NET

Dim thresholdVr As Integer
Dim rotationMaxVr As Integer
GrFingerXCtrl1.GetVerifyParameters thresholdVr, rotationMaxVr, GR_DEFAULT_CONTEXT

Delphi

Var
thresholdVr : Integer;
rotationMaxVr: Integer;        
begin
GrFingerXCtrl1.GetVerifyParameters(thresholdVr, rotationMaxVr, GR_DEFAULT_CONTEXT);
End