简体   繁体   English

将数字角色sdk集成到我的java应用程序中

[英]integrate digital persona sdk into my application in java

I need urgent help, after googling a lot since last 3-4 weeks. 自从过去3-4周以来,我在谷歌搜索后需要紧急帮助。 I only able to figure out that, i can use digital persona sdk on my web application, which i am trying to make in java. 我只能弄清楚,我可以在我的网络应用程序上使用数字角色sdk,我试图在java中制作。

Since, hardware for fingerprint reader (Digital Persona Personal) has already been installed in my system. 因为, 指纹识别器(Digital Persona Personal)的硬件已经安装在我的系统中。 And, i'm trying to use same hardware for my web application. 而且,我正在尝试为我的Web应用程序使用相同的硬件。 But, how can i embed it in my application, don't know. 但是,我怎么能将它嵌入我的应用程序中,不知道。

I'm assuming that, fingerprint reader (Digital Persona Personal) will be installed in client side. 我假设,指纹识别器(Digital Persona Personal)将安装在客户端。

I need everyone help, anybody know.. i'll appreciate !! 我需要每个人的帮助,任何人都知道..我会很感激!!

Well, what you want to achieve can be a bit hard to do depending on your needs/experience, but having done a biometric matching/enrollment/digital signature system in delphi(client)/java(server) i can summarize the steps as follows: 那么,根据您的需求/经验,您想要实现的目标可能有点难,但在delphi(客户端)/ java(服务器)中完成了生物识别匹配/注册/数字签名系统我可以总结如下步骤:

1.- The client is an win32 activex (could be a java applet) that can take a fingerprint image and send it to the server for matching or enrollment purposes, the server takes the image and applies a matching function that returns a score, here i recommend you to take a look at some paid options like verifinger, griaule etc. I dont know if it can be done with the UareU One Touch SDK. 1.-客户端是一个win32 activex(可能是一个java applet),它可以获取指纹图像并将其发送到服务器以进行匹配或注册,服务器获取图像并应用返回分数的匹配函数,这里我建议你看看一些付费选项,如verifinger,griaule等。我不知道是否可以使用UareU One Touch SDK完成。

2.- The client is an Activex embedded in the web page as an object (calling an applet is very similar), you just call it with a simple javascript code like "identResult = activexObj.Identify()" or something. 2.-客户端是一个嵌入在网页中作为对象的Activex(调用applet非常相似),你只需用一个简单的javascript代码来调用它,比如“identResult = activexObj.Identify()”等等。 The image is sent to the server which in return replies if the fingerprint matches the template stored, comparing the score vs threshold defined as the minimum for matching. 图像被发送到服务器,如果指纹与存储的模板匹配,则返回答复,将得分与阈值进行比较,将其定义为匹配的最小值。

3.- Probably you will need to do some image processing in the client, like converting your raw image to a compressed format like WSQ, there are no (to my knowledge) java implementations of wsq, so you will have to interface to native code via JNI for this purpose. 3.-可能你需要在客户端进行一些图像处理,比如将原始图像转换为像WSQ这样的压缩格式,没有(据我所知)wsq的java实现,所以你必须接口到本机代码通过JNI为此目的。

4.- There might be a lot of nuances but i hope this helps you to clarify the situation. 4.-可能有很多细微差别,但我希望这可以帮助你澄清情况。 Good Luck Juan. 好运胡安。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM