Package-level declarations
Types
Link copied to clipboard
Default implementation for VinScanner.
Link copied to clipboard
Status of the barcode extraction.
Link copied to clipboard
data class VinBarcodeResult(val extractedVIN: String, val rectangle: List<Point>, val status: VinBarcodeExtractionStatus) : Parcelable
Result of the barcode scanner.
Link copied to clipboard
interface VinScanner
Component to scan preview image and recognize Vehicle Identification Number (VIN).
Link copied to clipboard
data class VinScannerConfiguration(var extractVINFromBarcode: Boolean = false, var ocrResolutionLimit: Int = 0, var maximumNumberOfAccumulatedFrames: Int = 3, var minimumNumberOfRequiredFramesWithEqualScanningResult: Int = 2) : Parcelable
Configuration for the VIN scanner.
Link copied to clipboard
Performs VIN recognition on camera preview frames. Outputs results via VinScannerFrameHandler.ResultHandler.
Link copied to clipboard
data class VinScannerResult(val textResult: TextPatternScannerResult, val barcodeResult: VinBarcodeResult) : Parcelable
Result of the VIN scanner.