Get Started With Text Capture

In this guide you will learn step by step how to add text capture to your application. Roughly, the steps are:

  • Include the ScanditTextCapture library and its dependencies to your project, if any.

  • Create a new data capture context instance, initialized with your license key.

  • Create a text capture settings instance.

  • Create a new text capture mode instance and initialize it with the settings created above.

  • Register a text capture listener to receive events when a new text is captured.

  • Obtain a camera instance and set it as the frame source on the data capture context.

  • Display the camera preview by creating a data capture view.

  • If displaying a preview, optionally create a new overlay and add it to data capture view for a better visual feedback.

Prerequisites

Before starting with adding a capture mode, make sure that you have a valid Scandit Data Capture SDK license key and that you added the necessary dependencies. If you have not done that yet, check out this guide.

Note

You can retrieve your Scandit Data Capture SDK license key, by signing in to your account at ssl.scandit.com/dashboard/sign-in.

Initialize the Text plugin

Warning

Without initializing the text plugin, runtime crashes will occur. However, you don’t have to initialize the core plugin, as initializing the text plugin already does that for you, as presented in the snippet below.

Before accessing anything of the Scandit Data Capture SDK functionality. You have to initialize the text plugin.

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await ScanditFlutterDataCaptureText.initialize();
  runApp(MyApp());
}

Internal dependencies

Some of the Scandit Data Capture SDK modules depend on others to work:

Module

Dependencies

scandit-flutter-datacapture-core

No dependencies

scandit-flutter-datacapture-barcode

  • scandit-flutter-datacapture-core

scandit-flutter-datacapture-parser

  • scandit-flutter-datacapture-core

scandit-flutter-datacapture-text

  • scandit-flutter-datacapture-core

scandit-flutter-datacapture-id

  • scandit-flutter-datacapture-core

  • scandit-flutter-datacapture-text (VIZ documents)

Create the Data Capture Context

The first step to add capture capabilities to your application is to create a new data capture context. The context expects a valid Scandit Data Capture SDK license key during construction.

var context = DataCaptureContext.forLicenseKey("-- ENTER YOUR SCANDIT LICENSE KEY HERE --");

Configure the Text Capture Behavior

Text capture is orchestrated by the TextCapture data capture mode. This class is the main entry point for capturing text. It is configured through TextCaptureSettings and allows to register one or more listeners that will get informed whenever a new text has been captured.

For creating a TextCaptureSettings instance, you need a JSON containing the necessary configuration for the text capture back-end. For details about the format of the JSON check Text Capture Settings JSON Structure.

First, create a TextCaptureSettings instance:

var textCaptureSettings = TextCaptureSettings.fromJSON(json);

Next, create a TextCapture instance with the settings from the previous step:

var textCapture = TextCapture.forContext(context, settings);

Register the Text Capture Listener

To get informed whenever a new text has been captured, add a TextCaptureListener through TextCapture.addListener() and implement the listener methods to suit your application’s needs.

First implement the TextCaptureListener interface. For example:

Then add the listener:

Use the Built-in Camera

The data capture context supports using different frame sources to perform recognition on. Most applications will use the built-in camera of the device, e.g. the world-facing camera of a device. The remainder of this tutorial will assume that you use the built-in camera.

Important

In iOS, the user must explicitly grant permission for each app to access cameras. Your app needs to provide static messages to display to the user when the system asks for camera permission. To do that include the NSCameraUsageDescription key in your app’s Info.plist file.

Important

In Android, the user must explicitly grant permission for each app to access cameras. Your app needs to declare the use of the Camera permission in the AndroidManifest.xml file and request it at runtime so the user can grant or deny the permission. To do that follow the guidelines from Request app permissions to request the android.permission.CAMERA permission.

When using the built-in camera there are recommended settings for each capture mode. These should be used to achieve the best performance and user experience for the respective mode. The following couple of lines show how to get the recommended settings and create the camera from it:

var cameraSettings = TextCapture.recommendedCameraSettings;

// Depending on the use case further camera settings adjustments can be made here.

Camera camera = Camera.defaultCamera;

if (camera != null) {
    camera.applySettings(cameraSettings);
}

Because the frame source is configurable, the data capture context must be told which frame source to use. This is done with a call to DataCaptureContext.setFrameSource():

context.setFrameSource(camera);

The camera is off by default and must be turned on. This is done by calling FrameSource.switchToDesiredState() with a value of FrameSourceState.on:

camera.switchToDesiredState(FrameSourceState.on);

There is a separate guide for more advanced camera functionality.

Use a Capture View to Visualize the Scan Process

When using the built-in camera as frame source, you will typically want to display the camera preview on the screen together with UI elements that guide the user through the capturing process. To do that, add a DataCaptureView to your view hierarchy:

var dataCaptureView = DataCaptureView.forContext(dataCaptureContext);
// Add the dataCaptureView to your widget tree

To visualize the results of text capture, the following overlay can be added:

var overlay = TextCaptureOverlay.withTextCaptureForView(textCapture, dataCaptureView)

Disabling Text Capture

To disable text capture, for instance as a consequence of a text being captured, set TextCapture.isEnabled to false. The effect is immediate: no more frames will be processed after the change. However, if a frame is currently being processed, this frame will be completely processed and deliver any results/callbacks to the registered listeners. Note that disabling the capture mode does not stop the camera, the camera continues to stream frames until it is turned off.

What’s next?

To dive further into the Scandit Data Capture SDK we recommend the following articles: