biometrics

How to use ZK4500 Fingerprint Scanner SDK in C# Project [closed]

爷,独闯天下 提交于 2019-11-29 16:12:29
I am developing a project in C#, for which I want to login/authenticate a user using their fingerprint. I bought a ZK4500 Fingerprint scanner and got its SDK from http://www.zkteco.com/product/ZK4500_238.html . The SDK is in C++. So How can I integrate this SDK with my C# project to perform the desired functionality? You need to add reference to ZKFPEngXControl that will appear under COM Type Libraries. After that you can use the ZKFPEngX Class to do whatever you require. using ZKFPEngXControl; and then ZKFPEngX fp = new ZKFPEngX(); fp.SensorIndex = 0; fp.InitEngine(); // Do validation as well

Android BiometricPrompt Compat library [closed]

六眼飞鱼酱① 提交于 2019-11-29 11:25:37
问题 Hi as mention in this post there is BiometricPrompt API for devices supporting Android O and lower but I am unable to find out BiometricPrompt Compat Library (as mention in image), is anyone able to help me to point out where is that support library, any link or guide? 回答1: I'm assuming it will be released soon as the source code for it appears here: https://android.googlesource.com/platform/frameworks/support/+/androidx-master-dev/biometric/src/main/java/androidx/biometrics/BiometricPrompt

Face recognition authentication in android [closed]

谁都会走 提交于 2019-11-29 04:11:38
Similar to fingerprint authentication for apps, i am trying to implement face recognition authentication in one of my android app. Can anyone guide me on how to achieve the same using any library or anything. Android’s Face Recognition (Software) is less safe than Apple Face ID (Hardware) Because of It doesn’t work in poor lighting conditions It is possible to unlock a phone with a picture So, it’s more a convenience as a feature than a security . I think you should go for Android Face Detection API / Vision API check for the documentation & tutorial find the same on GitHub There is also an

Java Voice Biometric

浪子不回头ぞ 提交于 2019-11-28 16:50:58
问题 I want to develop an application based on Voice Biometric Recognition . Specifically, I want to develop an application which will record a voice from the telephone, and identify the speaker. If the same person calls again it will recognize the voice. Like other Biometric applications do here my need is to do a voice biometric. Are there any URLs or examples which will help me. I searched but not able to find a solution. FreeSpeech is a text-independent speaker verification system that

iso 19794-2 fingerprint format

自作多情 提交于 2019-11-28 06:28:10
I am using iso 19794-2 fingerprint data format. All the data are in the iso 19794-2 format. I have more than hundred thousand fingerprints. I wish to make efficient search to identify the match. Is it possible to construct a binary tree like structure to perform an efficient(fastest) search for match? or suggest me a better way to find the match. and also suggest me an open source api for java to do fingerprint matching. Help me. Thanks. Do you have a background in fingerprint matching? It is not a simple problem and you'll need a bit of theory to tackle such a problem. Have a look at this

syntax error near unexpected token `$'in\\r''

瘦欲@ 提交于 2019-11-28 04:40:15
I'm trying to compile the NIST Biometric Image Software, and I have been having trouble all day. I finally got the source checked out right, and I installed cygwin with no problems (I have used it in the past), but when I went to compile, I get this error: $ sh setup.sh </cygdrive/c/NBIS> [--without-X11] setup.sh: line 94: syntax error near unexpected token `$'in\r'' 'etup.sh: line 94: ` case $1 in Now I'm sure any advanced coder would head to the setup.sh and look for problems, but I'm not really much of a coder (I'm only compiling this because there are no pre-compiled packages) so I don't

What are the correct usage/parameter values for HoughCircles in OpenCV for Iris detection?

混江龙づ霸主 提交于 2019-11-28 03:30:21
I've been reading about the subject but cannot get the idea in "plain English" about the usage and parameters for HoughCircles (specially the ones after CV_HOUGH_GRADIENT ). What's an accumulator threshold? Are 100 "votes" a right value? I could find and "mask" the pupil, and worked my way through the Canny function, but I'm struggling beyond that and my problem is the HoughCircles function. There seems to be failing at finding the Iris' circle and I don't know why. And this is the function I'm working on: def getRadius(area): r = 1.0 r = math.sqrt(area/3.14) return (r) def getIris(frame):

Android fingerprint detect new finger added

笑着哭i 提交于 2019-11-27 21:45:09
How to detect if the user add new fingerprint to Android settings after he/she authenticate finger inside my application ? i.e. iOS have something called (evaluatedPolicyDomainState) to detect changes in fingerprint catalog what is the alternative in Android ? This require for security reasons to prompt password in this case From the documentation for setUserAuthenticationRequired : The key will become irreversibly invalidated once the secure lock screen is disabled (reconfigured to None, Swipe or other mode which does not authenticate the user) or when the secure lock screen is forcibly reset

Determine if biometric hardware is present and the user has enrolled biometrics on Android P

痞子三分冷 提交于 2019-11-27 20:22:37
问题 I'm asked to show certain UI elements depending on the presence of biometric hardware. For Android 23-27 I use FingerprintManager#isHardwareDetected() and FingerprintManager#hasEnrolledFingerprints() . Both of which are deprecated in Android 28. I understand that I can get this information by using BiometricPrompt#authenticate(...) and receiving either BiometricPrompt#BIOMETRIC_ERROR_HW_NOT_PRESENT or BiometricPrompt#BIOMETRIC_ERROR_NO_BIOMETRICS in the BiometricPrompt.AuthenticationCallback

Face recognition authentication in android [closed]

戏子无情 提交于 2019-11-27 18:06:12
问题 Similar to fingerprint authentication for apps, i am trying to implement face recognition authentication in one of my android app. Can anyone guide me on how to achieve the same using any library or anything. 回答1: Android’s Face Recognition (Software) is less safe than Apple Face ID (Hardware) Because of It doesn’t work in poor lighting conditions It is possible to unlock a phone with a picture So, it’s more a convenience as a feature than a security . 回答2: I think you should go for Android