Griaule Biometrics

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

GetIdentifyParameters

Retrieves the identification 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] identifyThreshold

The current identification score threshold.

[out] identifyRotationTolerance

The current rotation tolerance for the identification process.

[in] context

Context from which the identification parameters will be retrieved.

See also

Declaration

C++ .NET

int GetIdentifyParameters (ref int identifyThreshold, ref int identifyRotationTolerance, int context)

C#

int GetIdentifyParameters (ref int identifyThreshold, ref int identifyRotationTolerance, int context)

VB6

Function GetIdentifyParameters (ByRef identifyThreshold As Long, ByRef identifyRotationTolerance As Long, ByVal context As Long) As Long

VB .NET

Function GetIdentifyParameters (ByRef identifyThreshold As Integer, ByRef identifyRotationTolerance As Integer, ByVal context As Integer) As Integer

Delphi

function GetIdentifyParameters(var identifyThreshold: integer; var identifyRotationTolerance: integer; context: integer): integer;

Sample Code

C++ .NET

int thresholdId, rotationMaxId;
axGrFingerXCtrl2->GetIdentifyParameters(&thresholdId, &rotationMaxId, GR_DEFAULT_CONTEXT);

C#

int ret, thresholdId = 0, rotationMaxId = 0;
axGrFingerXCtrl1.GetIdentifyParameters(ref thresholdId, ref rotationMaxId, (int)GRConstants.GR_DEFAULT_CONTEXT);

VB6

Dim thresholdId As Long
Dim rotationMaxId As Long
GrFingerXCtrl1.GetIdentifyParameters thresholdId, rotationMaxId, GR_DEFAULT_CONTEXT

VB .NET

Dim thresholdId As Integer
Dim rotationMaxId As Integer
GrFingerXCtrl1.GetIdentifyParameters thresholdId, rotationMaxId, GR_DEFAULT_CONTEXT

Delphi

Var
thresholdId : Integer;
rotationMaxId: Integer;
begin
GrFingerXCtrl1.GetIdentifyParameters(thresholdId, rotationMaxId, GR_DEFAULT_CONTEXT);