Add AR Overlays in MatrixScan
Prerequisites
To proceed, you need to setup a project that uses MatrixScan first, check out this guide (you can ignore the bottom section about the visualization of tracked barcodes using BarcodeTrackingBasicOverlay).
Getting started
There are two ways to add advanced AR overlays to a Data Capture View:
Take advantage of the BarcodeTrackingAdvancedOverlay class, which provides a ready-to-use implementation for view-based AR overlays.
Provide your own custom implementation, using the function BarcodeTrackingListener.onSessionUpdated() to retrieve the barcode’s current screen position for each frame.
Note
The first way is the easiest, as it takes care of adding, removing and animating the overlay’s views whenever needed. It’s also flexible enough to cover the majority of use cases.
You can always handle touch events on the views you create like you normally would.
Using BarcodeTrackingAdvancedOverlay
As mentioned above, the advanced overlay combined with its listener offers an easy way of adding augmentations to your DataCaptureView. In this guide we will add a view above each barcode showing its content.
First of all, create a new instance of BarcodeTrackingAdvancedOverlay and add it to the DataCaptureView.
BarcodeTrackingAdvancedOverlay overlay = BarcodeTrackingAdvancedOverlay.newInstance(barcodeTracking, dataCaptureView);
At this point, you have two options.
Add a BarcodeTrackingAdvancedOverlayListener to the overlay.
Use the setters in the overlay to specify the view, anchor and offset for each barcode.
Note
The second way will take priority over the first one, which means that if a view for a barcode has been set using BarcodeTrackingAdvancedOverlay.setViewForTrackedBarcode(), the function BarcodeTrackingAdvancedOverlayListener.viewForTrackedBarcode() won’t be invoked for that specific barcode.
Using BarcodeTrackingAdvancedOverlayListener
You need to implement BarcodeTrackingAdvancedOverlayListener. This interface’s methods are invoked every time a barcode is newly tracked.
BarcodeTrackingAdvancedOverlayListener.viewForTrackedBarcode() asks for a view to animate on top of the barcode. Returning null will show no view.
BarcodeTrackingAdvancedOverlayListener.anchorForTrackedBarcode() asks how to anchor the view to the barcode through Anchor. Be aware that it anchors the view’s center to the anchor point. To achieve anchoring the top of the view or the bottom etc. you will have to set an offset as explained in the next point.
BarcodeTrackingAdvancedOverlayListener.offsetForTrackedBarcode() asks for an offset that is applied on the already anchored view. This offset is expressed through a PointWithUnit.
@Nullable
@Override
public View viewForTrackedBarcode(
@NotNull BarcodeTrackingAdvancedOverlay overlay,
@NotNull TrackedBarcode trackedBarcode
) {
// Create and return the view you want to show for this tracked barcode. You can also return null, to have no view for this barcode.
TextView textView = new TextView(this);
textView.setBackgroundColor(Color.WHITE);
textView.setLayoutParams(
new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT
)
);
textView.setText(trackedBarcode.getBarcode().getData());
return textView;
}
@NotNull
@Override
public Anchor anchorForTrackedBarcode(
@NotNull BarcodeTrackingAdvancedOverlay overlay,
@NotNull TrackedBarcode trackedBarcode
) {
// As we want the view to be above the barcode, we anchor the view's center to the top-center of the barcode quadrilateral.
// Use the function 'offsetForTrackedBarcode' below to adjust the position of the view by providing an offset.
return Anchor.TOP_CENTER;
}
@NotNull
@Override
public PointWithUnit offsetForTrackedBarcode(
@NotNull BarcodeTrackingAdvancedOverlay overlay,
@NotNull TrackedBarcode trackedBarcode,
@NotNull View view
) {
// This is the offset that will be applied to the view.
// You can use MeasureUnit.FRACTION to give a measure relative to the view itself, the sdk will take care of transforming this into pixel size.
// We now center horizontally and move up the view to make sure it's centered and above the barcode quadrilateral by half of the view's height.
return new PointWithUnit(
new FloatWithUnit(0f, MeasureUnit.FRACTION),
new FloatWithUnit(-1f, MeasureUnit.FRACTION)
);
}
Using the setters in the overlay
The function BarcodeTrackingListener.onSessionUpdated() gives you access to a session, which contains all added, updated and removed tracked barcodes. From here you can create the view you want to display, and then call BarcodeTrackingAdvancedOverlay.setViewForTrackedBarcode(), BarcodeTrackingAdvancedOverlay.setAnchorForTrackedBarcode() and BarcodeTrackingAdvancedOverlay.setOffsetForTrackedBarcode()
@Override
public void onSessionUpdated(
@NonNull BarcodeTracking mode,
@NonNull final BarcodeTrackingSession session,
@NonNull FrameData data
) {
// Be careful, this function is not invoked on the main thread!
runOnUiThread(new Runnable() {
@Override
public void run() {
for (TrackedBarcode trackedBarcode : session.getAddedTrackedBarcodes()) {
TextView textView = new TextView(this);
textView.setBackgroundColor(Color.WHITE);
textView.setLayoutParams(
new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT
)
);
textView.setText(trackedBarcode.getBarcode().getData());
overlay.setViewForTrackedBarcode(trackedBarcode, textView);
overlay.setAnchorForTrackedBarcode(
trackedBarcode, Anchor.TOP_CENTER
);
overlay.setOffsetForTrackedBarcode(
trackedBarcode,
new PointWithUnit(
new FloatWithUnit(0f, MeasureUnit.FRACTION),
new FloatWithUnit(-1f, MeasureUnit.FRACTION)
)
);
}
}
});
}
Provide your own custom implementation
If you do not want to use the overlay, it is also possible to add augmented reality features based on the tracking identifier and the quadrilateral coordinates that every tracked barcode has. Below are some pointers.
Set a BarcodeTrackingListener on the barcode tracking
In the BarcodeTrackingListener.onSessionUpdated() function fetch the added and removed tracked barcodes.
Create and show the views for the added barcodes.
Remove the views for the lost barcodes.
Add a method that is called 60fps when BarcodeTracking is enabled. In this method, for each TrackedBarcode on-screen, update the position based on TrackedBarcode.location. Please note that there is no need to animate the change of location, the change of position will happen frequently enough that the view will look as it is animated.
Note
The frame coordinates from TrackedBarcode.location need to be mapped to view coordinates, using DataCaptureView.mapFrameQuadrilateralToView().
@Override
public void onSessionUpdated(
@NonNull BarcodeTracking mode,
@NonNull final BarcodeTrackingSession session,
@NonNull FrameData data
) {
// Be careful, this function is not invoked on the main thread!
runOnUiThread(new Runnable() {
@Override
public void run() {
for (int lostTrackIdentifier : session.getRemovedTrackedBarcodes()) {
// You now know the identifier of the tracked barcode that has been lost. Usually here you would remove the views associated.
}
for (TrackedBarcode trackedBarcode : session.getAddedTrackedBarcodes()) {
// Fixed identifier for the tracked barcode.
Integer trackingIdentifier = trackedBarcode.getIdentifier();
// Current location of the tracked barcode.
Quadrilateral location = trackedBarcode.getLocation();
Quadrilateral quadrilateral = dataCaptureView.mapFrameQuadrilateralToView(location);
// You now know this new tracking's identifier and location. Usually here you would create and show the views.
}
}
});
}