1

我正在开发一个使用 Digital Persona U.are.U 4000b 指纹读取器的软件。

它工作正常。但是我在指纹验证过程中遇到了性能问题。

我的数据库在那里注册了大约 3.000 个指纹,我需要在验证过程中循环所有这些指纹。

但是每次成功的指纹读取大约需要 7 秒才能匹配我数据库的相应记录(这取决于它的索引)。

这对我来说不是一个可接受的场景,因为我需要在 20 分钟的间隔内注册(并实时显示他们的数据、照片……)至少 400 名学生。问题出在巨大的指纹数据库上,因为当我用较小的指纹数据库对其进行测试时,它运行良好。

我正在使用带有 C# 的 .NET 和用于指纹的免费 SDK。导致此问题的代码行是在 FOREACH 中执行的代码行(对于数据库的每个注册指纹):

verificator.Verify(features, template, ref result);
  • verificatorDPFP.Verification.Verification处理验证过程的对象;
  • features是一个DPFP.FeatureSet包含实际指纹数据的对象;
  • templateDPFP.Template代表每个登记指纹的对象;
  • result是一个DPFP.Verification.Verification.Result包含每个指纹验证返回的对象。

这是整个process方法:

    protected void process(DPFP.Sample sample)
    {
        DPFP.FeatureSet features = ExtractFeatures(sample, DPFP.Processing.DataPurpose.Verification);
        bool verified = false;
        if (features != null)
        {
            DPFP.Verification.Verification.Result result = new DPFP.Verification.Verification.Result();
            //"allTemplates" is an List<> of objects that contains all the templates previously loaded from DB
            //There is no DB access in these lines of code
            foreach (var at in allTemplates)
            {
                verificator.Verify(features, at.template, ref result);
                if (result.Verified)
                {
                    register(at.idStudent);
                    verified = true;
                    break;
                }
            }
        }
        if (!verified)
            error("Invalid student.");
    }

我做得对吗?

还有另一种方法可以完成这项工作吗?

4

3 回答 3

2

我通过购买(我“赢得”了它,因为我已经购买了一个阅读器)解决了我的问题,新版本的 SDK 已经实现了识别(1:n) 功能。您可以在他们的网站上获取更多信息并下载(购买)SDK 。

于 2013-06-22T05:00:48.363 回答
0

试用 SourceAFIS。它是开源的,如果您将指纹缓存在内存中,它会以超过 10k 指纹/秒的速度执行您所说的 1-N 识别过程。源代码也是 100% C#。

于 2013-03-28T00:37:03.897 回答
0

最好将模板转换为字符串

byte [] a = new byte [1632];
Template.Serialize (ref a);
string Convert.ToBase64String basestring = (a);

然后恢复正常的模板

byte [] b = new byte [1632];
b = Convert.FromBase64String (trace) / / pass the base-64 string to a byte array.
/ / create a Template type varibale where we store the template
DPFP.Template DPFP.Template template = new ();
/ / what to compare it desserializamos
template.DeSerialize (b);
于 2013-06-21T03:15:17.217 回答