m7_livelyness_detection 0.0.6+4 copy "m7_livelyness_detection: ^0.0.6+4" to clipboard
m7_livelyness_detection: ^0.0.6+4 copied to clipboard

A single function package to detect weather the face visible in the camera is a live face or not.

m7_livelyness_detection #

drawing

Index #

What is the Livelyness Detection? #

Liveness detection for face recognition in biometrics is a technique where an algorithm detects if the person in front of the camera is alive and real. The algorithm is able to recognize a live person from presentation attacks - where a bad actor, or fraud perpetrator, uses someone else's physical characteristics or biometric data (known as "spoofs") for impersonation.

Spoofing attempts using printed photos, recordings, deep fake pictures, and 3D masks poses a serious threat. Facial Liveness Detection incorporates specialized features to identify biometric spoofing attacks, which could be an imitation emulating a person’s unique biometrics scanned through the biometric detector to deceive or bypass the identification and authentication steps provided by the system. Even though face recognition can reliably answer the question, “Is this the right person?” but not the question, “Is this a live person?” This is where liveness detection technology plays a significant role in fraud detection and mitigation. Face biometric matching must be able to detect spoofs in order to be trusted, and to maintain the integrity of biometric data.

Platform Support #

iOS Android MacOS Web Linux Windows
✔️ ✔️

Installation #

First, we have to install the package on flutter.

Flutter Setup

Add m7_livelyness_detection to your pubspec.yaml dependencies.

Using command-line
flutter pub add m7_livelyness_detection

Native Setup

Next comes the native setup on both android and iOS

iOS

iOS Setup

  1. Open the project in Xcode and set the deployment
  2. Open the ios/Runner/Info.plist file as Source Code.
  3. Add the below-mentioned code inside the <dict> tag.
  <key>NSCameraUsageDescription</key>
  <string>Camera Access for Scanning</string>
  <key>NSMicrophoneUsageDescription</key>
  <string>Microphone for playing instructions audio.</string>
  1. Open the ios/Runner/Podfile and uncomment the second line.
platform :ios, '14.0' # <---------- Uncomment this line
  1. Set the deployment target in the Xcode project
Screenshot 2023-01-02 at 11 03 17 AM

Android

Android Setup

  1. Open the example/android/app/build.gradle file and set the minSdkVersion as 21.

Example #

A call to a single line function will return a temporary path to the captured image.

Code

    final String? response =
        await M7LivelynessDetection.instance.detectLivelyness(
      context,
      config: M7DetectionConfig(
        steps: [
          M7LivelynessStepItem(
            step: M7LivelynessStep.blink,
            title: "Blink",
            isCompleted: false,
          ),
          M7LivelynessStepItem(
            step: M7LivelynessStep.smile,
            title: "Smile",
            isCompleted: false,
          ),
        ],
        startWithInfoScreen: true,
      ),
    );

Example Video

https://user-images.githubusercontent.com/106381741/210200724-ae4af9cc-ffeb-49e4-a3f9-9971b2f256b6.MP4

Contributors #

Developers
Sagar Ghag
Omkar Tralsawala
37
likes
130
pub points
85%
popularity

Publisher

unverified uploader

A single function package to detect weather the face visible in the camera is a live face or not.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

animate_do, camera, camerawesome, collection, equatable, flutter, google_mlkit_face_detection, image, lottie, path_provider, plugin_platform_interface, rxdart, uuid

More

Packages that depend on m7_livelyness_detection