CheckScanner

interface CheckScanner

Performs scanning of the check data

Inheritors

Functions

Link copied to clipboard

Returns a copy of the current configuration.

Link copied to clipboard
abstract fun scan(nv21: ByteArray, width: Int, height: Int, orientation: Int, returnImageOnSuccess: Boolean = false): CheckScanningResult?

Performs check data scanning on the NV21 format image

Link copied to clipboard
abstract fun scanFromBgr(bgr: ByteArray, width: Int, height: Int, orientation: Int): CheckScanningResult?

Performs check data scanning on the BGR format image

Link copied to clipboard
abstract fun scanFromBitmap(image: Bitmap, orientation: Int): CheckScanningResult?

Performs check data scanning on the Bitmap

Link copied to clipboard
abstract fun scanFromJpeg(image: ByteArray, orientation: Int): CheckScanningResult?

Performs check data scanning on the JPEG image

Link copied to clipboard
abstract fun scanInArea(nv21: ByteArray, width: Int, height: Int, orientation: Int, areaRect: Rect, returnImageOnSuccess: Boolean = false): CheckScanningResult?

Performs check data scanning in the finder rect on the NV21 format image

Link copied to clipboard
abstract fun setConfiguration(configuration: CheckScannerConfiguration)

Sets the configuration for the Check scanner.