我正在开发一个使用 Digital Persona U.are.U 4000b 指纹读取器的软件。
它工作正常。但是我在指纹验证过程中遇到了性能问题。
我的数据库在那里注册了大约 3.000 个指纹,我需要在验证过程中循环所有这些指纹。
但是每次成功的指纹读取大约需要 7 秒才能匹配我数据库的相应记录(这取决于它的索引)。
这对我来说不是一个可接受的场景,因为我需要在 20 分钟的间隔内注册(并实时显示他们的数据、照片……)至少 400 名学生。问题出在巨大的指纹数据库上,因为当我用较小的指纹数据库对其进行测试时,它运行良好。
我正在使用带有 C# 的 .NET 和用于指纹的免费 SDK。导致此问题的代码行是在 FOREACH 中执行的代码行(对于数据库的每个注册指纹):
verificator.Verify(features, template, ref result);
verificator
是DPFP.Verification.Verification
处理验证过程的对象;features
是一个DPFP.FeatureSet
包含实际指纹数据的对象;template
是DPFP.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.");
}
我做得对吗?
还有另一种方法可以完成这项工作吗?