gpt4 book ai didi

java - 手指数据匹配错误

转载 作者:行者123 更新时间:2023-11-29 19:04:58 25 4
gpt4 key购买 nike

我目前正在开发一个简单的java项目,我正在扫描用户的指纹,将其转换为字符串,使用文本将其存储在数据库(MySQL)中,从数据库检索它们并将其与新的指纹进行比较以执行匹配操作。问题是对于同一个人来说,它无法识别指纹数据。为了捕获手指数据,我使用 Mantra 的 MFS100 指纹设备!!!这是代码快照:

byte[] ISOTemplate = null;

/* Finger data contains
* byte[] ISOTemplate;
*/

FingerData data = new FingerData();

/*It will now scan fingerprints from device*/

int ret = mfs100.AutoCapture(data,timeout,false,false);

//Initializing local ISOTemplate
ISOTemplate = new byte[data.ISOTemplate().length];
System.arraycopy(data.ISOTemplate(), 0, ISOTemplate, 0, data.ISOTemplate().length);

//Storing it in database
String str = new String(ISOTemplate);
Connection con = (Connection)
DriverManager.getConnection("jdbc:mysql://localhost:3306/db","user","pass");
PreparedStatement ps = con.prepareStatement("update datatable set fingerscan = ? where empID like '123'");
ps.setString(1,str);
ps.executeUpdate();

到这里为止,一切都工作正常。问题出在这里:

PreparedStatement ps = con.prepareStatement("select fingerscan from datatable where empID like '123'");            
ResultSet rs = ps.executeQuery();
while(rs.next()){
String tmp = rs.getString("fingerscan");
ISOTemplate = tmp.getBytes();
}

//captures new data from user
int ret = mfs100.AutoCapture(data, timeout, false, false);
if(ret == 0){
int score = 0;
score = mfs100.MatchISO(data.ISOTemplate(), ISOTemplate);
System.out.println("Score:"+score);
if(score > 14000){
Alert alert = new Alert(Alert.AlertType.CONFIRMATION, "Success:"+score, ButtonType.OK);
alert.show();
}else if (score >= 0 && score < 14000) {
Alert alert = new Alert(Alert.AlertType.CONFIRMATION, "Failure:"+score, ButtonType.OK);
alert.show();
}
}

根据设备规范,匹配分数应该大于14000。但在我的例子中,分数只有1300左右。我已经尝试过:

How to save "Finger Print" in database

但分数仍然低于 14000。

我知道问题是当我将手指数据存储在 mysql 数据库中时,数据变得毫无用处。所以请建议我一些将手指数据存储到数据库中的方法。请帮助我提高比赛分数。

最佳答案

不要将字节数组转换为字符串。

在 MySQL 中

使用 BLOB 创建列类型

保存模板

在Java中使用setBytes PreparedStatement方法

PreparedStatement ps = con.prepareStatement("update datatable set fingerscan = ? where empID like '123'");
ps.setBytes(1,ISOTemplate);
ps.executeUpdate();

获取模板

在Java中使用getBytes ResultSet方法

PreparedStatement ps = con.prepareStatement("select fingerscan from 
datatable where empID like '123'");
ResultSet rs = ps.executeQuery();
while(rs.next()){
String tmp = rs.getBytes(1);
ISOTemplate = tmp.getBytes();
}

关于java - 手指数据匹配错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43577567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com