Barcode Count Session

Defined in package com.scandit.datacapture.barcode.count.capture

BarcodeCountSession
class BarcodeCountSession

Added in version 6.14.0

The count session contains all the currently tracked barcodes and changes that were made specifically in the last processed frame.

Important

The count session should only be accessed from within onScan() to which it is provided as an argument. It is not safe to be accessed from anywhere else since it may be concurrently modified.

Specifically no reference to recognizedBarcodes should be kept and traversed outside of onScan(). Instead a copy of the lists should be made to avoid concurrent modification. The individual tracked barcodes can be referenced without copying as they are not further modified.

recognizedBarcodes
val recognizedBarcodes: List<Barcode>

Added in version 7.0.0

A list containing all currently recognized barcodes.

recognizedClusters
val recognizedClusters: List<Cluster>

Added in version 7.1.0

A list containing all currently recognized clusters.

frameSequenceId
val frameSequenceId: Long

Added in version 6.14.0

The identifier of the current frame sequence.

Important

As long as there is no interruptions of frames coming from the camera, the frameSequenceId will stay the same.

reset()
fun reset()

Added in version 6.14.0

Resets the barcode count session, effectively clearing the history of recognized barcodes. This function should only be called inside the listeners’ callback.

additionalBarcodes
val additionalBarcodes: List<Barcode>

Added in version 6.16.0

The array of additional barcodes injected with BarcodeCount.setAdditionalBarcodes().

toJson()
fun toJson(): String

Added in version 6.17.0

Returns the JSON representation of the barcode count session.

getSpatialMap()
fun getSpatialMap(): BarcodeSpatialGrid?

Added in version 6.17.0

Computes the spatial map with the current session data. If a value is returned by this method the scanning is automatically suspended. Returns null if BarcodeCountSettings.mappingEnabled is false.

Note

The Barcode Count mapping API is still in beta and may change in future versions of Scandit Data Capture SDK.

getSpatialMap(expectedNumberOfRows, expectedNumberOfColumns)
fun getSpatialMap(expectedNumberOfRows: Int,
        expectedNumberOfColumns: Int): BarcodeSpatialGrid?

Added in version 6.17.0

Computes the spatial map with the current session data, using the passed values as hints. If a value is returned by this method the scanning is automatically suspended. Returns null if BarcodeCountSettings.mappingEnabled is false.

Note

The Barcode Count mapping API is still in beta and may change in future versions of Scandit Data Capture SDK.