zhoule
zhoule

Reputation: 11

Hololens2 iris recognition

I'm looking for the iris recognition solution and hitting this topic by chance. May I know what Windows APIs we can use for the HL2 iris recognition and where I can find them? I've looked into the HL2 documentation but unluckily no relevant stuff found. Thanks so much in advance.

https://learn.microsoft.com/en-us/windows/uwp/security/microsoft-passport

Upvotes: 1

Views: 1104

Answers (1)

Hernando - MSFT
Hernando - MSFT

Reputation: 2900

The HoloLens app are UWP app, the iris recognition as biometrics, it belongs to authentication and user identity area. You can perform a verification with iris biometrics as in any UWP apps.

First, you need to use UserConsentVerifier.CheckAvailabilityAsync method to check whether a verifier device is available. Once the biometric device is available, call UserConsentVerifier.RequestVerificationAsync() method to performs a verification using the biometric device.

Besides, the UserConsentVerifier sample show how to use the UserConsentVerifier class to check whether a verifier device is available and performs the verification, it’s worth reading for you.

Upvotes: 2

Related Questions