google_mlkit_document_scanner 0.2.0 copy "google_mlkit_document_scanner: ^0.2.0" to clipboard
google_mlkit_document_scanner: ^0.2.0 copied to clipboard

A Flutter plugin to use the ML Kit document scanner API to easily add a document scanner feature to your app.

Google's ML Kit Document scanner for Flutter #

Pub Version analysis Star on Github License: MIT

NOTE: This feature is still in Beta, and it is only available for Android. Stay tune for updates in Google's website and request the feature here.

A Flutter plugin to use Google's ML Kit Document Scanner to digitize physical documents, which allows users to convert physical documents into digital formats. ML Kit's document scanner API provides a comprehensive solution with a high-quality, consistent UI flow across Android apps and devices. Once the document scanner flow is triggered from your app, users retain full control over the scanning process. They can optionally crop the scanned documents, apply filters, remove shadows or stains, and easily send the digitized files back to your app.

The UI flow, ML models and other large resources are delivered using Google Play services, which means:

  • Low binary size impact (all ML models and large resources are downloaded centrally in Google Play services).
  • No camera permission is required - the document scanner leverages the Google Play services' camera permission, and users are in control of which files to share back with your app.

Key capabilities

  • High-quality and consistent user interface for digitizing physical documents.
  • Automatic capture with document detection.
  • Accurate edge detection for optimal crop results.
  • Automatic rotation detection to show documents upright.
  • No camera permission is needed from your app.
  • Low apk binary size impact.

Customization

The document scanner API provides a high-quality fully fledged UI flow that is consistent across Android apps. However, there is also room to customize some aspects of the user experience

  • Maximum number of pages
  • Gallery import
  • Editing functionalities

PLEASE READ THIS before continuing or posting a new issue:

  • Google's ML Kit was build only for mobile platforms: iOS and Android apps. Web or any other platform is not supported, you can request support for those platform to Google in their repo.

  • This plugin is not sponsored or maintained by Google. The authors are developers excited about Machine Learning that wanted to expose Google's native APIs to Flutter.

  • Google's ML Kit APIs are only developed natively for iOS and Android. This plugin uses Flutter Platform Channels as explained here.

    Messages are passed between the client (the app/plugin) and host (platform) using platform channels as illustrated in this diagram:

    Messages and responses are passed asynchronously, to ensure the user interface remains responsive. To read more about platform channels go here.

    Because this plugin uses platform channels, no Machine Learning processing is done in Flutter/Dart, all the calls are passed to the native platform using MethodChannel in Android and FlutterMethodChannel in iOS, and executed using Google's native APIs. Think of this plugin as a bridge between your app and Google's native ML Kit APIs. This plugin only passes the call to the native API and the processing is done by Google's API. It is important that you understand this concept when it comes to debugging errors for your ML model and/or app.

  • Since the plugin uses platform channels, you may encounter issues with the native API. Before submitting a new issue, identify the source of the issue. You can run both iOS and/or Android native example apps by Google and make sure that the issue is not reproducible with their native examples. If you can reproduce the issue in their apps then report the issue to Google. The authors do not have access to the source code of their native APIs, so you need to report the issue to them. If you find that their example apps are okay and still you have an issue using this plugin, then look at our closed and open issues. If you cannot find anything that can help you then report the issue and provide enough details. Be patient, someone from the community will eventually help you.

Requirements #

iOS #

This feature is still in Beta, and it is only available for Android. Stay tune for updates in Google's website and request the feature here.

Android #

  • minSdkVersion: 21
  • targetSdkVersion: 33
  • compileSdkVersion: 34

Usage #

Document Scanner #

Create an instance of DocumentScannerOptions

DocumentScannerOptions documentOptions = DocumentScannerOptions(
  documentFormat: DocumentFormat.jpeg, // set output document format 
  mode: ScannerMode.filter, // to control what features are enabled 
  pageLimit: 1, // setting a limit to the number of pages scanned
  isGalleryImport: true, // importing from the photo gallery 
);

Create an instance of DocumentScanner

final documentScanner = DocumentScanner(option: documentOptions);

Start Scanner

The scanner returns objects for the scanned document.

DocumentScanningResult result = await documentScanner.scanDocument();
final pdf = result.pdf; // A PDF object.
final images = result.images;  // A list with the paths to the images.

Release resources with close()

documentScanner.close();

Example app #

Find the example app here.

Contributing #

Contributions are welcome. In case of any problems look at existing issues, if you cannot find anything related to your problem then open an issue. Create an issue before opening a pull request for non trivial fixes. In case of trivial fixes open a pull request directly.

4
likes
140
pub points
61%
popularity

Publisher

verified publisherflutter-ml.dev

A Flutter plugin to use the ML Kit document scanner API to easily add a document scanner feature to your app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on google_mlkit_document_scanner