0

我有secugen 仓鼠 pro20。我正在使用带有 vb.net 的 asp.net 来获取指纹。我正在使用 SecuGen FDx Pro SDK Activex 控件来获取图像。它工作正常并返回数据类型document.frmmain.objFP[idx].ImageTextDatadocument.frmmain.objFP[idx].MinTextData. 我想要 ISO 19794-2 格式的数据。但是这两个输出都没有提供任何与 ISO 格式模板 LIKE FMR 20 相关的东西。

如果有人知道我如何使用 Secugen FDx Pro SDK Activex 控件获取 ISO 19794-2 格式模板,请回复。

4

1 回答 1

0

这是我正在使用的代码示例。

<html>
<head>
<title>ActiveX Example 1.1 of SecuGen FDx Pro SDK </title>
</head>

<script lang=javascript>
<!--
var aaa = 0;
function fnOpenDevice()
{
    for ( i=0; i<3; i++)
    {
        document.frmmain.objFP[i].DeviceID = document.frmmain.inc.value;
        document.frmmain.objFP[i].CodeName = document.frmmain.dev.value;
        //document.frmmain.objFP[i].MinutiaeMode =              document.frmmain.templateFormat.value;
    }

    // template format of objVerify should be the same to those of objFP[]
    //objVerify.MinutiaeMode = document.frmmain.templateFormat.value;
    return;
}

function fnCapture(idx)
{
document.frmmain.objFP[idx].Capture();
var result = document.frmmain.objFP[idx].ErrorCode;
if (result == 0)
{

    var strimg1 = document.frmmain.objFP[idx].MinTextData;
    document.frmmain.min[idx].value = strimg1;
    //var strmin = document.frmmain.objFP[idx].MinTextData;
    //document.frmmain.min[idx].value = strmin;
}
else
    alert('failed - ' + result);

return;
}

function fnRegister()
{
var strmin1 = document.frmmain.min[0].value;
var strmin2 = document.frmmain.min[1].value;

if ( objVerify.RegisterForText(strmin1, strmin2) && objVerify.ErrorCode == 0    )
    alert('success- registered');
else
    alert('failed - ' + objVerify.ErrorCode);

return;

}

function fnVerifyEx()
{   
    var strmin1 = document.frmmain.min[0].value;
    var strmin2 = document.frmmain.min[1].value;
    var strmin3 = document.frmmain.min[2].value;

    if ( objVerify.VerifyExForText(strmin1, strmin2, strmin3) && objVerify.ErrorCode == 0)
        alert('Success - matched');
    else
        alert('Failed - ' + objVerify.ErrorCode);

    return;
}

function fnVerify()
{   
    var strmin1 = document.frmmain.min[0].value;
    var strmin2 = document.frmmain.min[2].value;

    if ( objVerify.VerifyForText(strmin1, strmin2) && objVerify.ErrorCode == 0 )
        alert('Success - matched');
    else
        alert('Failed - ' + objVerify.ErrorCode);

    return;
}

function fnSetimage()
{
    document.frmmain.objFP.ImageTextData = document.frmmain.img1.value;

    return;
}
// -->

</script>

<body>

SecuGen FDx Pro SDK 的 ActiveX 示例 1.1

<OBJECT id=objVerify style="LEFT: 0px; TOP: 0px" height=0 width=0 
    classid="CLSID:8D613732-7D38-4664-A8B7-A24049B96117" 
    name=objVerify VIEWASTEXT>
</OBJECT>

<form name=frmmain>

Device Type :
<select name=dev>
<option value=0>FDP02
<option value=1>FDU02
<option value=2>FDU03
<option value=3>FDU04
<option selected value=4>FDU05

</select>

Instance No. :
<select name=inc>
<option value=-1>-1 
<option value=0>0
<option value=1>1
<option value=2>2
<option value=3>3
<option value=4>4
<option value=5>5
<option value=6>6
<option value=7>7
<option value=8>8
<option value=9>9
</select>

<p>
Template Format:
<select name=templateFormat>
<option value=256>ANSI 378
<option value=512>SG 400
<option value=768>ISO 19794-2
</select>

<input type=button name=open value='Open Device' OnClick='fnOpenDevice();'>
<p>

<table border=1 cellspacing=0 cellpadding=0>
<caption> Fingerprint Images </caption>
<tr>

<p>

分钟 1 :分钟 2
:
分钟 3 :



</BODY>
 </HTML>
于 2015-11-12T06:34:55.547 回答