Tracked Barcode#
Defined in package com.scandit.datacapture.barcode.tracking.data
-
TrackedBarcode
# class TrackedBarcode
Added in version 6.0.0
A barcode tracked over the course of multiple frames.
The state of a TrackedBarcode can be observed using a BarcodeTrackingListener.
The BarcodeTrackingListener.onSessionUpdated() callback will be invoked every time a new frame is processed and at least one of the following events took place:
A track is established.
A track location has changed.
A track is lost and can no longer be tracked.
-
location
# @NonNull Quadrilateral
getLocation
()Added in version 6.4.0
The current position of the tracked barcode.
Note
Using this property requires the MatrixScan AR add-on. In case the feature is not licensed, a quadrilateral with all corners set to 0, 0 is returned.
-
deltaTimeToPrediction
# @NonNull TimeInterval
getDeltaTimeToPrediction
()Added in version 6.0.0
The time (in seconds) it will take the tracked barcode to move to the predictedLocation. This value can be used to animate the predicted change of location of the tracked barcode.
Deprecated since version 6.5.0: Replaced by location which returns a continuously interpolated location instead of the previously fixed future location.
-
predictedLocation
# @NonNull Quadrilateral
getPredictedLocation
()Added in version 6.0.0
The location where the tracked barcode is predicted to be in deltaTimeToPrediction.
Note
Using this property requires the MatrixScan AR add-on. In case the feature is not licensed, a quadrilateral with all corners set to 0, 0 is returned.
Deprecated since version 6.5.0: Replaced by location which returns a continuously interpolated location instead of the previously fixed future location.
-
shouldAnimateFromPreviousToNextState
# boolean
getShouldAnimateFromPreviousToNextState
()Added in version 6.0.0
True if it’s safe to animate from the current state to the next. As there are state transitions that do not guarantee a stable ordering of the location’s corners you should always check this property before animating a location change.
-
identifier
# int
getIdentifier
()Added in version 6.0.0
The unique identifier for the tracked barcode. The identifier is unique for each barcode. The same identifier may be reused once the barcode is lost for another barcode.