Package io.scanbot.sdk.check
Interface CheckRecognizer
-
- All Implemented Interfaces:
public interface CheckRecognizerPerforms recognition of the check data
-
-
Method Summary
Modifier and Type Method Description abstract UnitsetAcceptedCheckStandards(ArrayList<RootDocumentType> acceptedCheckStandards)Accepted checks. abstract CheckRecognizerResultrecognize(ByteArray nv21, Integer width, Integer height, Integer orientation, Boolean returnImageOnSuccess)Performs check data recognition on the NV21 format image abstract CheckRecognizerResultrecognizeWithFinderOverlay(ByteArray nv21, Integer width, Integer height, Integer orientation, Rect finderRect, Boolean returnImageOnSuccess)Performs check data recognition in the finder rect on the NV21 format image abstract CheckRecognizerResultrecognizeBgr(ByteArray bgr, Integer width, Integer height, Integer orientation)Performs check data recognition on the BGR format image abstract CheckRecognizerResultrecognizeJpeg(ByteArray image, Integer orientation)Performs check data recognition on the JPEG image abstract CheckRecognizerResultrecognizeBitmap(Bitmap image, Integer orientation)Performs check data recognition on the Bitmap -
-
Method Detail
-
setAcceptedCheckStandards
abstract Unit setAcceptedCheckStandards(ArrayList<RootDocumentType> acceptedCheckStandards)
Accepted checks.
- Parameters:
acceptedCheckStandards- A list of RootDocumentType (enum - RootDocumentType.USACheck, RootDocumentType.FRACheck, RootDocumentType.KWTCheck, RootDocumentType.AUSCheck, RootDocumentType.INDCheck, RootDocumentType.ISRCheck, RootDocumentType.UnknownCheck, RootDocumentType.UAECheck, RootDocumentType.CANCheck).
-
recognize
abstract CheckRecognizerResult recognize(ByteArray nv21, Integer width, Integer height, Integer orientation, Boolean returnImageOnSuccess)
Performs check data recognition on the NV21 format image
-
recognizeWithFinderOverlay
abstract CheckRecognizerResult recognizeWithFinderOverlay(ByteArray nv21, Integer width, Integer height, Integer orientation, Rect finderRect, Boolean returnImageOnSuccess)
Performs check data recognition in the finder rect on the NV21 format image
-
recognizeBgr
abstract CheckRecognizerResult recognizeBgr(ByteArray bgr, Integer width, Integer height, Integer orientation)
Performs check data recognition on the BGR format image
-
recognizeJpeg
abstract CheckRecognizerResult recognizeJpeg(ByteArray image, Integer orientation)
Performs check data recognition on the JPEG image
-
recognizeBitmap
abstract CheckRecognizerResult recognizeBitmap(Bitmap image, Integer orientation)
Performs check data recognition on the Bitmap
-
-
-
-