Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 396 Bytes

File metadata and controls

22 lines (15 loc) · 396 Bytes

EZEyeAuth

Authentication Using Iris-Scanner

How to enroll

from ezeyeauth import Authenticator
auth = Authenticator()
auth.enroll("/path/to/left/iris.png", "/path/to/right/iris.png")

How to authenticate

from ezeyeauth import Authenticator
auth = Authenticator()
match = auth.auth("/path/to/left/iris.png", "/path/to/right/iris.png")
print(match)