Set up the Active Scan Area and Location Selection

By default capture modes will try to read barcodes, text etc anywhere in the camera frames. However, in some cases you want to restrict the area in which the capture modes search. For example, you may want to scan codes only at one location to let users pick a barcode by precisely pointing at it. Or part of the camera preview is covered by UI elements and you want to ensure that no codes are scanned below these elements.

This page describes how to setup the scan area for data capture modes to get the optimal behavior for your app.

Setting up the Scan Area for Your Use Case

The Scan Area is Restricted to the Visible Part of the Preview

When displaying the processed frames in the DataCaptureView, the scan area is automatically restricted to what is visible. This avoids unexpected scans as the code first has to be visible on screen before it can be scanned. This is especially important when the preview only shows a small part of the whole camera frame, e.g. when using a cropped view.

If you want to scan codes in the whole visible area, no further configuration is required. If there are some UI elements overlaying the camera preview you might want to further restrict the scan area to really only be the final visible part of the preview and avoid picking up codes that the user can’t see yet. For this you can change the DataCaptureView.scanAreaMargins property on the DataCaptureView.

Note

If there is nothing laying on top of the camera preview but you still want to reduce the scan area please have a look at location selections for this instead of scan area margins. Location selections are centered on the point of interest and are sized like viewfinders which makes them a much better fit for such use cases.

Here is an example of restricting the scanning area by 200 device independent pixels from the bottom because a view is covering the bottom of the screen.

const view = ...;
view.scanAreaMargins = new Scandit.MarginsWithUnit(
  new Scandit.NumberWithUnit(0f, Scandit.MeasureUnit.DIP),
  new Scandit.NumberWithUnit(0f, Scandit.MeasureUnit.DIP),
  new Scandit.NumberWithUnit(0f, Scandit.MeasureUnit.DIP),
  new Scandit.NumberWithUnit(200f, Scandit.MeasureUnit.DIP)
);

If you want to adjust margins based on the view dimensions or orientation, e.g. to use different margins based on the device orientation, you can observe view size and orientation changes on the data capture view by registering a DataCaptureViewListener on the data capture view.

Changing the Point of Interest

By default, scanning is optimized for the center of the visible part of the preview (or the center of the frame if the frame is not displayed in a DataCaptureView). This is specified through what we call the point of interest. This point is also where code selection happens if it is enabled, more on that in the next section.

If you want to shift the scanning to another point, you can change the DataCaptureView.pointOfInterest property. For example, the code below shifts the point of interest vertically to a fourth of the height:

const view = ...;
view.pointOfInterest = new Scandit.PointWithUnit(
  new Scandit.NumberWithUnit(0.5, Scandit.MeasureUnit.Fraction),
  new Scandit.NumberWithUnit(0.25, Scandit.MeasureUnit.Fraction)
);

When specifying fractions, they are relative to the visible area minus the margins. This means that a point of interest of 0.5/0.5 is always centered in the scan area defined through the size of the view and potentially added margins.

As indicated above, register a DataCaptureViewListener on the data capture view to change the point of interest whenever the view dimension or orientation changes.

Location Selection

Note

Location selection is not available for every DataCaptureMode. This section will concentrate on BarcodeCapture but it can be applied exactly the same to other modes that allow setting a LocationSelection in their settings.

Sometimes it is necessary to let the user select which code to scan, e.g. to select one code from a dense stack of barcodes. Enabling full-image scanning is not desired in that case as any of the codes currently visible on screen could be returned as part of the results. To not return a random code but clearly target specific codes, a LocationSelection can be set in the BarcodeCaptureSettings. Location selections implement a specific strategy to select barcodes by their location.

Radius Location Selection

The RadiusLocationSelection is the simplest and for barcode scanning the preferred way of location selection. It lets you define a radius around the point of interest (see previous section). Any barcode touched by the circle will be recognized and returned, any barcode not touched by the circle will be entirely ignored. Radius location selection can resolve all of the following scenarios that could not be handled properly with full-image scanning:

Selecting stacked codes, e.g. a sheet of vertically-stacked Code 128. Here the middle code will be returned as it is touched by the circle while the code above and below are not.

_images/scan-area-radius1.png

Selecting codes printed next to each other. Once again only the middle code is returned as it is the only one touched by the circle.

_images/scan-area-radius3.png

Both of those scenarios work with any symbology, here an example of Data Matrix codes printed next to each other.

_images/scan-area-radius6.png

As the code selection is done through a circle it works just as well for vertical codes, or codes at any other angle.

_images/scan-area-radius5.png

A RadiusLocationSelection is created by specifying a radius and then setting it on the barcode capture settings with BarcodeCaptureSettings.locationSelection. For example, the code below creates a radius location selection for a radius of 0 (a valid radius forcing barcodes to contain the point of interest):

const barcodeCaptureSettings = ...;
barcodeCaptureSettings.locationSelection = new Scandit.RadiusLocationSelection(
  new Scandit.NumberWithUnit(0, Scandit.MeasureUnit.Fraction)
);

When choosing the radius it is important to consider two potential issues:

If the radius chosen is too large, it might often be touching multiple barcodes at the same time. In this case it is not a given that the central barcode will be returned and it is advicable to reduce the radius.

_images/scan-area-radius2.png

If the radius chosen is too small, higher precision is needed to touch a barcode. It can be helpful to the user experience to increase the radius in this case.

_images/scan-area-radius4.png

Rectangular Location Selection

The RectangularLocationSelection lets you define the size of a rectangle around the point of interest (see previous section). Any code outside of the rectangle will not be recognized. One of the main use cases for the rectangular location selection is to restrict TextCapture to only capture text inside a small area instead of the whole screen or restrict BarcodeCapture to a small area if RadiusLocationSelection is not a good fit.

A RectangularLocationSelection is created by specifying the size of the rectangle and then setting it on the barcode/text capture settings with BarcodeCaptureSettings.locationSelection. For example, the code below creates a rectangular location selection for a very thin area taking 10% of the view’s height and 90% of the view’s width:

const barcodeCaptureSettings = ...;
const size = new Scandit.SizeWithUnit(
  new Scandit.NumberWithUnit(0.9, Scandit.MeasureUnit.Fraction),
  new Scandit.NumberWithUnit(0.1, Scandit.MeasureUnit.Fraction)
)
barcodeCaptureSettings.locationSelection = Scandit.RectangularLocationSelection.withSize(size);

The size of the rectangle can also be set by only providing either the width or the height and then an aspect ratio to calculate the other dimension. This can be especially useful for defining a square area:

const barcodeCaptureSettings = ...;
const width = new Scandit.NumberWithUnit(0.5, Scandit.MeasureUnit.Fraction);
barcodeCaptureSettings.locationSelection = Scandit.RectangularLocationSelection.withWidthAndAspectRatio(width, 1);

Debugging The Scan Area And Location Selection

It can be important to visually debug the scan area to make sure that it is configured exactly how it should be.

To this purpose you can enable an overlay that visualizes everything that was set in the scan area through BarcodeCaptureOverlay.shouldShowScanAreaGuides:

let overlay = ...;
overlay.shouldShowScanAreaGuides = true;
_images/scan-area-guides.png

Visualized are:

  • The scan area including the margins by a light grey rectangle

  • The radius location selection by a green crosshair

The above visualization is for the following example settings:

let barcodeCaptureSettings = ...;
barcodeCaptureSettings.locationSelection = new Scandit.RadiusLocationSelection(
  new Scandit.NumberWithUnit(5, Scandit.MeasureUnit.DIP));
let dataCaptureView = ...;
dataCaptureView.pointOfInterest = new Scandit.PointWithUnit(
  new Scandit.NumberWithUnit(0.7, Scandit.MeasureUnit.Fraction),
  new Scandit.NumberWithUnit(0.25, Scandit.MeasureUnit.Fraction)
);
dataCaptureView.scanAreaMargins = new Scandit.MarginsWithUnit(
  new Scandit.NumberWithUnit(40.0, Scandit.MeasureUnit.DIP),
  new Scandit.NumberWithUnit(0.0, Scandit.MeasureUnit.DIP),
  new Scandit.NumberWithUnit(40.0, Scandit.MeasureUnit.DIP),
  new Scandit.NumberWithUnit(0.5, Scandit.MeasureUnit.fraction)
);