Barcode Accumulation Configuration
data class BarcodeAccumulationConfiguration(var accumulationTime: Int = 500, var removeUnconnectedResults: Boolean = true, var method: BarcodeAccumulationMethod = BarcodeAccumulationMethod.INTERPOLATE_BY_CAMERA) : Parcelable
Configuration for how to accumulate results.
Constructors
Link copied to clipboard
constructor(accumulationTime: Int = 500, removeUnconnectedResults: Boolean = true, method: BarcodeAccumulationMethod = BarcodeAccumulationMethod.INTERPOLATE_BY_CAMERA)
Properties
Link copied to clipboard
The time in milliseconds to accumulate barcodes across multiple frames.
Link copied to clipboard
The method how to display barcodes from previous frames.
Link copied to clipboard
If true, the results from previous frames that are not connected to results on the current frame will be removed. This is should be enabled when large camera movements are expected. For small camera movements, the option can be disabled.