myhr_facescan 1.0.1 copy "myhr_facescan: ^1.0.1" to clipboard
myhr_facescan: ^1.0.1 copied to clipboard

Enroll face using luxand, verify real people by using active liveness detection

myhr_facescan #

Connect luxand made easy.

Face enrollment #

EnrollFace(
    licenseKey: Env.luxandLicenseKey,
    onFinish: (templates) {
        Get.off(LivenessPage(templates: templates));
    },
)
Parameter Name Description Default value
licenseKey Luxand license key None
imageStreamMilliSecond Capture image every this value and send image to luxand 100 ms
templateCount Total template for this enrollment 3
topMessage Display message that show on top of face rectangle 'Please touch screen'

Active liveness detection #

ActiveLivenessVerifier(
    licenseKey: Env.luxandLicenseKey,
    onFinish: (success, template) {},
)
Parameter Name Description Default value
licenseKey Luxand license key None
imageStreamMilliSecond Capture image every this value and send image to luxand 200 ms
failAcceptableInSecond Widget will finish and return false if luxand cannot detect face in picture in 1 / imageStreamInMillisecond / 1000 x failAcceptableInSecond 3 s

Matching face template #

⚠️ this widget can match template but not yet send data to user (in development).

MatchTemplateScanner(
    licenseKey: Env.luxandLicenseKey,
    templates: con.templates,
    onFinish: (success, template) {},
)
1
likes
125
points
8
downloads

Publisher

unverified uploader

Weekly Downloads

Enroll face using luxand, verify real people by using active liveness detection

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

camera, flutter, get, image, plugin_platform_interface

More

Packages that depend on myhr_facescan

Packages that implement myhr_facescan