BaseBarcode

data class BaseBarcode(val text: String = "", val type: BaseBarcode.BarcodeType = BarcodeType.Unknown, val boundingBox: BaseBarcode.BoundingBox = BoundingBox(0f, 0f, 0f, 0f), var position: Point3? = null, var maxConfidence: Float = 0.0f, var recognitionCount: Int? = null, val symbol: String = "", val timestamp: Long = Clock.System.now().toEpochMilliseconds())

Constructors

Link copied to clipboard
constructor(text: String = "", type: BaseBarcode.BarcodeType = BarcodeType.Unknown, boundingBox: BaseBarcode.BoundingBox = BoundingBox(0f, 0f, 0f, 0f), position: Point3? = null, maxConfidence: Float = 0.0f, recognitionCount: Int? = null, symbol: String = "", timestamp: Long = Clock.System.now().toEpochMilliseconds())

Types

Link copied to clipboard
Link copied to clipboard
data class BoundingBox(val x: Float, val y: Float, val width: Float, val height: Float)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun toString(): String