flutter_mobile_vision 0.0.3 copy "flutter_mobile_vision: ^0.0.3" to clipboard
flutter_mobile_vision: ^0.0.3 copied to clipboard

discontinued
outdated

Flutter implementation for Google Mobile Vision. Scan Barcodes, Recognize Text and Detect Faces.

flutter_mobile_vision #

Codacy Badge pub package

Flutter implementation for Google Mobile Vision.

Based on Google Mobile Vision.

Android Samples -=- iOS Samples

Liked? ⭐ Star the repo to support the project!

Features #

  • Android

    • ✅ Barcode Scan
      • ✅ Simple scan.
      • ✅ Toggle torch.
      • ✅ Toggle auto focus.
      • ✅ Specify types of barcodes that will be read.
      • ✅ Tap to capture.
      • ✅ Select barcode type to be scanned.
      • ✅ Scan multiple barcodes.
      • ✅ Barcode coordinates.
      • ✅ Show barcode text.
    • ✅ Recognize Text
      • ✅ Simple OCR.
      • ✅ Multiple recognition.
      • ✅ Text language.
      • ✅ Text coordinates.
      • ✅ Hide recognized text.
    • ❌ Detect Faces
      • Future Tasks
  • iOS

    • ❌ Barcode Scan
      • Future Tasks
    • ❌ Recognize Text
      • Future Tasks
    • ❌ Detect Faces
      • Future Tasks

Screenshots #

Usage #

Example

To use this plugin :

  • add the dependency to your pubspec.yaml file:
  dependencies:
    flutter:
      sdk: flutter
    flutter_mobile_vision: ^0.0.3

Barcode #

//...
List<Barcode> barcodes = [];
try {
  barcodes = await FlutterMobileVision.scan(
    flash: _torchBarcode,
    autoFocus: _autoFocusBarcode,
    formats: _onlyFormatBarcode,
    multiple: _multipleBarcode,
    waitTap: _waitTapBarcode,
    showText: _showTextBarcode,
  );
} on Exception {
  barcodes.add(new Barcode('Failed to get barcode.'));
}
//...

Android #

For Android, you must do the following before you can use the plugin:

  • Add the camera permission to your AndroidManifest.xml

    <uses-feature android:name="android.hardware.camera" />

    <uses-permission android:name="android.permission.CAMERA" />

  • Add the Barcode activity to your AndroidManifest.xml

    <activity android:name="io.github.edufolly.fluttermobilevision.BarcodeCaptureActivity" />

iOS #

If you can help, the community thanks. Your fork is needed. 😉


OCR #

//...
List<OcrText> texts = [];
try {
  texts = await FlutterMobileVision.read(
    flash: _torchOcr,
    autoFocus: _autoFocusOcr,
    multiple: _multipleOcr,
    showText: _showTextOcr,
  );
} on Exception {
  texts.add(new OcrText('Failed to recognize text.'));
}
//...

Android #

For Android, you must do the following before you can use the plugin:

  • Add the camera permission to your AndroidManifest.xml

    <uses-feature android:name="android.hardware.camera" />

    <uses-permission android:name="android.permission.CAMERA" />

  • Add the OCR activity to your AndroidManifest.xml

    <activity android:name="io.github.edufolly.fluttermobilevision.ocr.OcrCaptureActivity" />

iOS #

If you can help, the community thanks. Your fork is needed. 😉

124
likes
0
pub points
77%
popularity

Publisher

verified publisher3daysapp.com.br

Flutter implementation for Google Mobile Vision. Scan Barcodes, Recognize Text and Detect Faces.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_mobile_vision