face_collect_native 1.0.4 copy "face_collect_native: ^1.0.4" to clipboard
face_collect_native: ^1.0.4 copied to clipboard

A face collection liveness package based on Google ML

Face collect native #

A plugin for face recognition and capture. support Android and iOS

Features #

  • To recognize a face, keep still within the face recognition frame to ensure clarity and accuracy.
  • Animation during facial scanning.
  • Return a clear and accurate image of the face.

Screenshot #

How to use #

PermissionStatus status = await Permission.camera.request();
  if (status.isGranted) {
    Uint8List? faceBytes = await FaceCollectScreen.show(context);
    if (faceBytes != null) {
      setState(() {
        this.faceBytes = faceBytes;
      });
    }
  }
  
/// show face image
Image.memory(faceBytes!, width: 300, fit: BoxFit.cover),

3
likes
120
pub points
49%
popularity

Publisher

unverified uploader

A face collection liveness package based on Google ML

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

camera, flutter, google_mlkit_face_detection, image, lottie

More

Packages that depend on face_collect_native