-
public interface ChequeScannerPerforms detection and recognition of the cheque data
-
-
Method Summary
Modifier and Type Method Description abstract ResultrecognizeCheque(ByteArray nv21, Integer width, Integer height, Integer orientation)Performs cheque data recognition on the NV21 format image abstract ResultrecognizeChequeBGR(ByteArray bgr, Integer width, Integer height, Integer orientation)Performs cheque data recognition on the BGR format image abstract ResultrecognizeChequeJPEG(ByteArray image, Integer width, Integer height, Integer orientation)Performs cheque data recognition on the JPEG image abstract ResultrecognizeChequeBitmap(Bitmap image, Integer orientation)Performs cheque data recognition on the Bitmap -
-
Method Detail
-
recognizeCheque
abstract Result recognizeCheque(ByteArray nv21, Integer width, Integer height, Integer orientation)
Performs cheque data recognition on the NV21 format image
-
recognizeChequeBGR
abstract Result recognizeChequeBGR(ByteArray bgr, Integer width, Integer height, Integer orientation)
Performs cheque data recognition on the BGR format image
-
recognizeChequeJPEG
abstract Result recognizeChequeJPEG(ByteArray image, Integer width, Integer height, Integer orientation)
Performs cheque data recognition on the JPEG image
-
recognizeChequeBitmap
abstract Result recognizeChequeBitmap(Bitmap image, Integer orientation)
Performs cheque data recognition on the Bitmap
-
-
-
-